_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;
	/**
	 * 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;
	/**
	 * Read data only?
	 *
	 * @return boolean
	 */
	public function getReadDataOnly()
	{
		return $this->_readDataOnly;
	}
	/**
	 * Set read data only
	 *
	 * @param boolean $pValue
	 * @return PHPExcel_Reader_Excel5
	 */
	public function setReadDataOnly($pValue = false)
	{
		$this->_readDataOnly = $pValue;
		return $this;
	}
	/**
	 * Get which sheets to load
	 *
	 * @return mixed
	 */
	public function getLoadSheetsOnly()
	{
		return $this->_loadSheetsOnly;
	}
	/**
	 * Set which sheets to load
	 *
	 * @param mixed $value
	 * @return PHPExcel_Reader_Excel5
	 */
	public function setLoadSheetsOnly($value = null)
	{
		$this->_loadSheetsOnly = is_array($value) ?
			$value : array($value);
		return $this;
	}
	/**
	 * Set all sheets to load
	 *
	 * @return PHPExcel_Reader_Excel5
	 */
	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_Excel5
	 */
	public function setReadFilter(PHPExcel_Reader_IReadFilter $pValue) {
		$this->_readFilter = $pValue;
		return $this;
	}
	/**
	 * 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
	 */
	public function canRead($pFilename)
	{
		// Check if file exists
		if (!file_exists($pFilename)) {
			throw new 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 (Exception $e) {
			return false;
		}
	}
	/**
	 * Loads PHPExcel from file
	 *
	 * @param 	string 		$pFilename
	 * @return 	PHPExcel
	 * @throws 	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 = $this->_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 = $this->_readColor($objFont->colorIndex);
					$objFont->getColor()->setRGB($color['rgb']);
				}
			}
			foreach ($this->_phpExcel->getCellXfCollection() as $objStyle) {
				// fill start and end color
				$fill = $objStyle->getFill();
				if (isset($fill->startcolorIndex)) {
					$startColor = $this->_readColor($fill->startcolorIndex);
					$fill->getStartColor()->setRGB($startColor['rgb']);
				}
				if (isset($fill->endcolorIndex)) {
					$endColor = $this->_readColor($fill->endcolorIndex);
					$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 = $this->_readColor($top->colorIndex);
					$top->getColor()->setRGB($borderTopColor['rgb']);
				}
				if (isset($right->colorIndex)) {
					$borderRightColor = $this->_readColor($right->colorIndex);
					$right->getColor()->setRGB($borderRightColor['rgb']);
				}
				if (isset($bottom->colorIndex)) {
					$borderBottomColor = $this->_readColor($bottom->colorIndex);
					$bottom->getColor()->setRGB($borderBottomColor['rgb']);
				}
				if (isset($left->colorIndex)) {
					$borderLeftColor = $this->_readColor($left->colorIndex);
					$left->getColor()->setRGB($borderLeftColor['rgb']);
				}
				if (isset($diagonal->colorIndex)) {
					$borderDiagonalColor = $this->_readColor($diagonal->colorIndex);
					$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();
			$this->_phpSheet->setTitle($sheet['name']);
			$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();
			while ($this->_pos <= $this->_dataSize - 4) {
				$code = $this->_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_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_IMDATA:				$this->_readImData();					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) {
				// the first shape container never has a corresponding OBJ record, hence $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['type']) {
				case 0x08:
					// 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 ( !is_null($this->getReadFilter()) && $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);
					}
				}
			}
		}
		// 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 = $explodes[0];
						if (count($explodes) == 2) {
							$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])) {
						$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) );
					}
				}
			}
		}
		return $this->_phpExcel;
	}
	/**
	 * 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);
		$this->_data = $ole->getWorkBook();
		// Get summary information data
		$this->_summaryInformation = $ole->getSummaryInformation();
		// Get additional document summary information data
		$this->_documentSummaryInformation = $ole->getDocumentSummaryInformation();
		// 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 = $this->_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 = $this->_GetInt4d($this->_summaryInformation, 44);
		// section header
		// offset: $secOffset; size: 4; section length
		$secLength = $this->_GetInt4d($this->_summaryInformation, $secOffset);
		// offset: $secOffset+4; size: 4; property count
		$countProperties = $this->_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 = $this->_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 = $this->_GetInt4d($this->_summaryInformation, ($secOffset+12) + (8 * $i));
			$type = $this->_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 = $this->_GetInt2d($this->_summaryInformation, $secOffset + 4 + $offset);
					break;
				case 0x03: // 4 byte signed integer
					$value = $this->_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 = $this->_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;
		}
//		hexDump($this->_documentSummaryInformation);
//
		//	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 = $this->_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 = $this->_GetInt4d($this->_documentSummaryInformation, 44);
//		echo '$secOffset = ',$secOffset,'
';
		//	section header
		//	offset: $secOffset;	size: 4;	section length
		$secLength = $this->_GetInt4d($this->_documentSummaryInformation, $secOffset);
//		echo '$secLength = ',$secLength,'
';
		//	offset: $secOffset+4;	size: 4;	property count
		$countProperties = $this->_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 = $this->_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 = $this->_GetInt4d($this->_documentSummaryInformation, ($secOffset+12) + (8 * $i));
			$type = $this->_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 = $this->_GetInt2d($this->_documentSummaryInformation, $secOffset + 4 + $offset);
					break;
				case 0x03:	//	4 byte signed integer
					$value = $this->_GetInt4d($this->_documentSummaryInformation, $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 = $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
//		$recordData = substr($this->_data, $this->_pos + 4, $length);
		// move stream pointer to next record
		$this->_pos += 4 + $length;
	}
	/**
	 * Read BOF
	 */
	private function _readBof()
	{
		$length = $this->_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 = $this->_GetInt2d($recordData, 2);
		switch ($substreamType) {
			case self::XLS_WorkbookGlobals:
				$version = $this->_GetInt2d($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 = $this->_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"
	 */
	private function _readFilepass()
	{
		$length = $this->_GetInt2d($this->_data, $this->_pos + 2);
//		$recordData = substr($this->_data, $this->_pos + 4, $length);
		// move stream pointer to next record
		$this->_pos += 4 + $length;
		throw new Exception('Cannot read encrypted file');
	}
	/**
	 * 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 = $this->_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: 0; size: 2; code page identifier
		$codepage = $this->_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 = $this->_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: 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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_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 & $this->_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 & $this->_GetInt2d($recordData, 2)) >> 3;
				if ($isStrike) $objFont->setStrikethrough(true);
			// offset: 4; size: 2; colour index
			$colorIndex = $this->_GetInt2d($recordData, 4);
			$objFont->colorIndex = $colorIndex;
			// offset: 6; size: 2; font weight
			$weight = $this->_GetInt2d($recordData, 6);
			switch ($weight) {
				case 0x02BC:
					$objFont->setBold(true);
					break;
			}
			// offset: 8; size: 2; escapement type
			$escapement = $this->_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 = $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($this->_data, $this->_pos + 4, $length);
		// move stream pointer to next record
		$this->_pos += 4 + $length;
		if (!$this->_readDataOnly) {
			$indexCode = $this->_GetInt2d($recordData, 0);
			if ($this->_version == self::XLS_BIFF8) {
				$string = $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 ($this->_GetInt2d($recordData, 0) < 4) {
				$fontIndex = $this->_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 = $this->_GetInt2d($recordData, 0) - 1;
			}
			$objStyle->setFont($this->_objFonts[$fontIndex]);
			// offset:  2; size: 2; Index to FORMAT record
			$numberFormatIndex = $this->_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 = $this->_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 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;
					} else if ($angle <= 180) {
						$rotation = 90 - $angle;
					} else if ($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 = $this->_mapBorderStyle((0x0000000F & $this->_GetInt4d($recordData, 10)) >> 0)) {
						$objStyle->getBorders()->getLeft()->setBorderStyle($bordersLeftStyle);
					}
					// bit: 7-4; mask: 0x000000F0; right style
					if ($bordersRightStyle = $this->_mapBorderStyle((0x000000F0 & $this->_GetInt4d($recordData, 10)) >> 4)) {
						$objStyle->getBorders()->getRight()->setBorderStyle($bordersRightStyle);
					}
					// bit: 11-8; mask: 0x00000F00; top style
					if ($bordersTopStyle = $this->_mapBorderStyle((0x00000F00 & $this->_GetInt4d($recordData, 10)) >> 8)) {
						$objStyle->getBorders()->getTop()->setBorderStyle($bordersTopStyle);
					}
					// bit: 15-12; mask: 0x0000F000; bottom style
					if ($bordersBottomStyle = $this->_mapBorderStyle((0x0000F000 & $this->_GetInt4d($recordData, 10)) >> 12)) {
						$objStyle->getBorders()->getBottom()->setBorderStyle($bordersBottomStyle);
					}
					// bit: 22-16; mask: 0x007F0000; left color
					$objStyle->getBorders()->getLeft()->colorIndex = (0x007F0000 & $this->_GetInt4d($recordData, 10)) >> 16;
					// bit: 29-23; mask: 0x3F800000; right color
					$objStyle->getBorders()->getRight()->colorIndex = (0x3F800000 & $this->_GetInt4d($recordData, 10)) >> 23;
					// bit: 30; mask: 0x40000000; 1 = diagonal line from top left to right bottom
					$diagonalDown = (0x40000000 & $this->_GetInt4d($recordData, 10)) >> 30 ?
						true : false;
					// bit: 31; mask: 0x80000000; 1 = diagonal line from bottom left to top right
					$diagonalUp = (0x80000000 & $this->_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 & $this->_GetInt4d($recordData, 14)) >> 0;
					// bit: 13-7; mask: 0x00003F80; bottom color
					$objStyle->getBorders()->getBottom()->colorIndex = (0x00003F80 & $this->_GetInt4d($recordData, 14)) >> 7;
					// bit: 20-14; mask: 0x001FC000; diagonal color
					$objStyle->getBorders()->getDiagonal()->colorIndex = (0x001FC000 & $this->_GetInt4d($recordData, 14)) >> 14;
					// bit: 24-21; mask: 0x01E00000; diagonal style
					if ($bordersDiagonalStyle = $this->_mapBorderStyle((0x01E00000 & $this->_GetInt4d($recordData, 14)) >> 21)) {
						$objStyle->getBorders()->getDiagonal()->setBorderStyle($bordersDiagonalStyle);
					}
					// bit: 31-26; mask: 0xFC000000 fill pattern
					if ($fillType = $this->_mapFillPattern((0xFC000000 & $this->_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 & $this->_GetInt2d($recordData, 18)) >> 0;
					// bit: 13-7; mask: 0x3F80; color index for pattern background
					$objStyle->getFill()->endcolorIndex = (0x3F80 & $this->_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 = $this->_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($this->_mapFillPattern((0x003F0000 & $borderAndBackground) >> 16));
				// bit: 24-22; mask: 0x01C00000; bottom line style
				$objStyle->getBorders()->getBottom()->setBorderStyle($this->_mapBorderStyle((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 = $this->_GetInt4d($recordData, 12);
				// bit: 2-0; mask: 0x00000007; top line style
				$objStyle->getBorders()->getTop()->setBorderStyle($this->_mapBorderStyle((0x00000007 & $borderLines) >> 0));
				// bit: 5-3; mask: 0x00000038; left line style
				$objStyle->getBorders()->getLeft()->setBorderStyle($this->_mapBorderStyle((0x00000038 & $borderLines) >> 3));
				// bit: 8-6; mask: 0x000001C0; right line style
				$objStyle->getBorders()->getRight()->setBorderStyle($this->_mapBorderStyle((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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_GetInt2d($recordData, 14);
			// offset: 16; size: 2; not used
			// offset: 18; size: 2; number of extension properties that follow
			$cexts = $this->_GetInt2d($recordData, 18);
			// start reading the actual extension data
			$offset = 20;
			while ($offset < $length) {
				// extension type
				$extType = $this->_GetInt2d($recordData, $offset);
				// extension length
				$cb = $this->_GetInt2d($recordData, $offset + 2);
				// extension data
				$extData = substr($recordData, $offset + 4, $cb);
				switch ($extType) {
					case 4:		// fill start color
						$xclfType  = $this->_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  = $this->_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  = $this->_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  = $this->_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  = $this->_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  = $this->_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  = $this->_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  = $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_GetInt2d($recordData, 0);
			// list of RGB colors
			for ($i = 0; $i < $nm; ++$i) {
				$rgb = substr($recordData, 2 + 4 * $i, 4);
				$this->_palette[] = $this->_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 = $this->_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: 0; size: 4; absolute stream position of the BOF record of the sheet
		$rec_offset = $this->_GetInt4d($recordData, 0);
		// 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 = $this->_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 = $this->_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 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 = $this->_GetInt2d($recordData, 0);
			$offset += 2;
			// offset: 2; size: var; encoded URL without sheet name (Unicode string, 16-bit length)
			$encodedUrlString = $this->_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 = $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_GetInt2d($recordData, 0);
			// offset: 2; size: 2;
			// offset: 4; size: 2; not used
			// offset: 6; size: var
			$nameString = $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_GetInt2d($recordData, 0);
			for ($i = 0; $i < $nm; ++$i) {
				$this->_ref[] = array(
					// offset: 2 + 6 * $i; index to EXTERNALBOOK record
					'externalBookIndex' => $this->_GetInt2d($recordData, 2 + 6 * $i),
					// offset: 4 + 6 * $i; index to first sheet in EXTERNALBOOK record
					'firstSheetIndex' => $this->_GetInt2d($recordData, 4 + 6 * $i),
					// offset: 6 + 6 * $i; index to last sheet in EXTERNALBOOK record
					'lastSheetIndex' => $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_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 = $this->_GetInt2d($recordData, 4);
			// offset: 8; size: 2; 0=Global name, otherwise index to sheet (1-based)
			$scope = $this->_GetInt2d($recordData, 8);
			// offset: 14; size: var; Name (Unicode string without length field)
			$string = $this->_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 (Exception $e) {
				$formula = '';
			}
			$this->_definedname[] = array(
				'isBuiltInName' => $isBuiltInName,
				'name' => $string['value'],
				'formula' => $formula,
				'scope' => $scope,
			);
		}
	}
	/**
	 * Read MSODRAWINGGROUP record
	 */
	private function _readMsoDrawingGroup()
	{
		$length = $this->_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 = $this->_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 = $this->_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 = $this->_GetInt2d($recordData, $pos);
				$pos += 2;
			}
			if ($hasAsian) {
				// size of Asian phonetic setting
				$extendedRunLength = $this->_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 = $this->_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 = $this->_GetInt2d($recordData, $pos + $j * 4);
					// index to font record
					$fontIndex = $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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) $this->_GetInt2d($recordData, 0);
			$this->_phpSheet->setPrintGridlines($printGridlines);
		}
	}
	/**
	 * Read DEFAULTROWHEIGHT record
	 */
	private function _readDefaultRowHeight()
	{
		$length = $this->_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: 0; size: 2; option flags
		// offset: 2; size: 2; default height for unused rows, (twips 1/20 point)
		$height = $this->_GetInt2d($recordData, 2);
		$this->_phpSheet->getDefaultRowDimension()->setRowHeight($height / 20);
	}
	/**
	 * Read SHEETPR record
	 */
	private function _readSheetPr()
	{
		$length = $this->_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: 0; size: 2
		// bit: 6; mask: 0x0040; 0 = outline buttons above outline group
		$isSummaryBelow = (0x0040 & $this->_GetInt2d($recordData, 0)) >> 6;
		$this->_phpSheet->setShowSummaryBelow($isSummaryBelow);
		// bit: 7; mask: 0x0080; 0 = outline buttons left of outline group
		$isSummaryRight = (0x0080 & $this->_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 & $this->_GetInt2d($recordData, 0)) >> 8);
	}
	/**
	 * Read HORIZONTALPAGEBREAKS record
	 */
	private function _readHorizontalPageBreaks()
	{
		$length = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_GetInt2d($recordData, 0);
			// offset: 2; size: 6 * $nm; list of $nm row index structures
			for ($i = 0; $i < $nm; ++$i) {
				$r = $this->_GetInt2d($recordData, 2 + 6 * $i);
				$cf = $this->_GetInt2d($recordData, 2 + 6 * $i + 2);
				$cl = $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_GetInt2d($recordData, 0);
			// offset: 2; size: 6 * $nm; list of $nm row index structures
			for ($i = 0; $i < $nm; ++$i) {
				$c = $this->_GetInt2d($recordData, 2 + 6 * $i);
				$rf = $this->_GetInt2d($recordData, 2 + 6 * $i + 2);
				$rl = $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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) $this->_GetInt2d($recordData, 0);
			$this->_phpSheet->getPageSetup()->setHorizontalCentered($isHorizontalCentered);
		}
	}
	/**
	 * Read VCENTER record
	 */
	private function _readVcenter()
	{
		$length = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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) $this->_GetInt2d($recordData, 0);
			$this->_phpSheet->getPageSetup()->setVerticalCentered($isVerticalCentered);
		}
	}
	/**
	 * Read LEFTMARGIN record
	 */
	private function _readLeftMargin()
	{
		$length = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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($this->_extractNumber($recordData));
		}
	}
	/**
	 * Read RIGHTMARGIN record
	 */
	private function _readRightMargin()
	{
		$length = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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($this->_extractNumber($recordData));
		}
	}
	/**
	 * Read TOPMARGIN record
	 */
	private function _readTopMargin()
	{
		$length = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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($this->_extractNumber($recordData));
		}
	}
	/**
	 * Read BOTTOMMARGIN record
	 */
	private function _readBottomMargin()
	{
		$length = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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($this->_extractNumber($recordData));
		}
	}
	/**
	 * Read PAGESETUP record
	 */
	private function _readPageSetup()
	{
		$length = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_GetInt2d($recordData, 0);
			// offset: 2; size: 2; scaling factor
			$scale = $this->_GetInt2d($recordData, 2);
			// offset: 6; size: 2; fit worksheet width to this number of pages, 0 = use as many as needed
			$fitToWidth = $this->_GetInt2d($recordData, 6);
			// offset: 8; size: 2; fit worksheet height to this number of pages, 0 = use as many as needed
			$fitToHeight = $this->_GetInt2d($recordData, 8);
			// offset: 10; size: 2; option flags
				// bit: 1; mask: 0x0002; 0=landscape, 1=portrait
				$isPortrait = (0x0002 & $this->_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 & $this->_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 = $this->_extractNumber(substr($recordData, 16, 8));
			$this->_phpSheet->getPageMargins()->setHeader($marginHeader);
			// offset: 24; size: 8; footer margin (IEEE 754 floating-point value)
			$marginFooter = $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 & $this->_GetInt2d($recordData, 0)) >> 0;
		$this->_phpSheet->getProtection()->setSheet((bool)$bool);
	}
	/**
	 * SCENPROTECT
	 */
	private function _readScenProtect()
	{
		$length = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 & $this->_GetInt2d($recordData, 0)) >> 0;
		$this->_phpSheet->getProtection()->setScenarios((bool)$bool);
	}
	/**
	 * OBJECTPROTECT
	 */
	private function _readObjectProtect()
	{
		$length = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 & $this->_GetInt2d($recordData, 0)) >> 0;
		$this->_phpSheet->getProtection()->setObjects((bool)$bool);
	}
	/**
	 * PASSWORD - Sheet protection (hashed) password (BIFF2 through BIFF8)
	 */
	private function _readPassword()
	{
		$length = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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($this->_GetInt2d($recordData, 0))); // the hashed password
			$this->_phpSheet->getProtection()->setPassword($password, true);
		}
	}
	/**
	 * Read DEFCOLWIDTH record
	 */
	private function _readDefColWidth()
	{
		$length = $this->_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: 0; size: 2; default column width
		$width = $this->_GetInt2d($recordData, 0);
		if ($width != 8) {
			$this->_phpSheet->getDefaultColumnDimension()->setWidth($width);
		}
	}
	/**
	 * Read COLINFO record
	 */
	private function _readColInfo()
	{
		$length = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_GetInt2d($recordData, 0); // first column index
			// offset: 2; size: 2; index to last column in range
			$lc = $this->_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 = $this->_GetInt2d($recordData, 4);
			// offset: 6; size: 2; index to XF record for default column formatting
			$xfIndex = $this->_GetInt2d($recordData, 6);
			// offset: 8; size: 2; option flags
				// bit: 0; mask: 0x0001; 1= columns are hidden
				$isHidden = (0x0001 & $this->_GetInt2d($recordData, 8)) >> 0;
				// bit: 10-8; mask: 0x0700; outline level of the columns (0 = no outline)
				$level = (0x0700 & $this->_GetInt2d($recordData, 8)) >> 8;
				// bit: 12; mask: 0x1000; 1 = collapsed
				$isCollapsed = (0x1000 & $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_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 & $this->_GetInt2d($recordData, 6)) >> 0;
				// bit: 15: mask: 0x8000; 0 = row has custom height; 1= row has default height
				$useDefaultHeight = (0x8000 & $this->_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 & $this->_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 & $this->_GetInt4d($recordData, 12)) >> 4;
				$this->_phpSheet->getRowDimension($r + 1)->setCollapsed($isCollapsed);
				// bit: 5; mask: 0x00000020; 1 = row is hidden
				$isHidden = (0x00000020 & $this->_GetInt4d($recordData, 12)) >> 5;
				$this->_phpSheet->getRowDimension($r + 1)->setVisible(!$isHidden);
				// bit: 7; mask: 0x00000080; 1 = row has explicit format
				$hasExplicitFormat = (0x00000080 & $this->_GetInt4d($recordData, 12)) >> 7;
				// bit: 27-16; mask: 0x0FFF0000; only applies when hasExplicitFormat = 1; index to XF record
				$xfIndex = (0x0FFF0000 & $this->_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 = $this->_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: 0; size: 2; index to row
		$row = $this->_GetInt2d($recordData, 0);
		// offset: 2; size: 2; index to column
		$column = $this->_GetInt2d($recordData, 2);
		$columnString = PHPExcel_Cell::stringFromColumnIndex($column);
		// Read cell?
		if ( !is_null($this->getReadFilter()) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->_phpSheet->getTitle()) ) {
			// offset: 4; size: 2; index to XF record
			$xfIndex = $this->_GetInt2d($recordData, 4);
			// offset: 6; size: 4; RK value
			$rknum = $this->_GetInt4d($recordData, 6);
			$numValue = $this->_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 = $this->_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: 0; size: 2; index to row
		$row = $this->_GetInt2d($recordData, 0);
		// offset: 2; size: 2; index to column
		$column = $this->_GetInt2d($recordData, 2);
		$columnString = PHPExcel_Cell::stringFromColumnIndex($column);
		// Read cell?
		if ( !is_null($this->getReadFilter()) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->_phpSheet->getTitle()) ) {
			// offset: 4; size: 2; index to XF record
			$xfIndex = $this->_GetInt2d($recordData, 4);
			// offset: 6; size: 4; index to SST record
			$index = $this->_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;
				for ($i = 0; $i <= count($this->_sst[$index]['fmtRuns']); ++$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]);
							}
						}
					}
				}
				$cell = $this->_phpSheet->getCell($columnString . ($row + 1));
				$cell->setValueExplicit($richText, PHPExcel_Cell_DataType::TYPE_STRING);
			} else {
				$cell = $this->_phpSheet->getCell($columnString . ($row + 1));
				$cell->setValueExplicit($this->_sst[$index]['value'], PHPExcel_Cell_DataType::TYPE_STRING);
			}
			if (!$this->_readDataOnly) {
				// 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 = $this->_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: 0; size: 2; index to row
		$row = $this->_GetInt2d($recordData, 0);
		// offset: 2; size: 2; index to first column
		$colFirst = $this->_GetInt2d($recordData, 2);
		// offset: var; size: 2; index to last column
		$colLast = $this->_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 ( !is_null($this->getReadFilter()) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->_phpSheet->getTitle()) ) {
				// offset: var; size: 2; index to XF record
				$xfIndex = $this->_GetInt2d($recordData, $offset);
				// offset: var; size: 4; RK value
				$numValue = $this->_GetIEEE754($this->_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 = $this->_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: 0; size: 2; index to row
		$row = $this->_GetInt2d($recordData, 0);
		// offset: 2; size 2; index to column
		$column = $this->_GetInt2d($recordData, 2);
		$columnString = PHPExcel_Cell::stringFromColumnIndex($column);
		// Read cell?
		if ( !is_null($this->getReadFilter()) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->_phpSheet->getTitle()) ) {
			// offset 4; size: 2; index to XF record
			$xfIndex = $this->_GetInt2d($recordData, 4);
			$numValue = $this->_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 = $this->_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: 0; size: 2; row index
		$row = $this->_GetInt2d($recordData, 0);
		// offset: 2; size: 2; col index
		$column = $this->_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 = $this->_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 = $this->_GetInt2d($formulaStructure, 3);
			$baseCol = $this->_GetInt2d($formulaStructure, 5);
			$this->_baseCell = PHPExcel_Cell::stringFromColumnIndex($baseCol). ($baseRow + 1);
		}
		// Read cell?
		if ( !is_null($this->getReadFilter()) && $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 = $this->_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 = $this->_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 = $this->_mapErrorCode(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 = $this->_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 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 (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 = $this->_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: 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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($this->_data, $this->_pos + 4, $length);
		// move stream pointer to next record
		$this->_pos += 4 + $length;
		if ($this->_version == self::XLS_BIFF8) {
			$string = $this->_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 = $this->_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: 0; size: 2; row index
		$row = $this->_GetInt2d($recordData, 0);
		// offset: 2; size: 2; column index
		$column = $this->_GetInt2d($recordData, 2);
		$columnString = PHPExcel_Cell::stringFromColumnIndex($column);
		// Read cell?
		if ( !is_null($this->getReadFilter()) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->_phpSheet->getTitle()) ) {
			// offset: 4; size: 2; index to XF record
			$xfIndex = $this->_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 = $this->_mapErrorCode($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 = $this->_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: 0; size: 2; index to row
		$row = $this->_GetInt2d($recordData, 0);
		// offset: 2; size: 2; index to first column
		$fc = $this->_GetInt2d($recordData, 2);
		// offset: 4; size: 2 x nc; list of indexes to XF records
		// add style information
		if (!$this->_readDataOnly) {
			for ($i = 0; $i < $length / 2 - 3; ++$i) {
				$columnString = PHPExcel_Cell::stringFromColumnIndex($fc + $i);
				// Read cell?
				if ( !is_null($this->getReadFilter()) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->_phpSheet->getTitle()) ) {
					$xfIndex = $this->_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 = $this->_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: 0; size: 2; index to row
		$row = $this->_GetInt2d($recordData, 0);
		// offset: 2; size: 2; index to column
		$column = $this->_GetInt2d($recordData, 2);
		$columnString = PHPExcel_Cell::stringFromColumnIndex($column);
		// Read cell?
		if ( !is_null($this->getReadFilter()) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->_phpSheet->getTitle()) ) {
			// offset: 4; size: 2; XF index
			$xfIndex = $this->_GetInt2d($recordData, 4);
			// add cell value
			// todo: what if string is very long? continue record
			if ($this->_version == self::XLS_BIFF8) {
				$string = $this->_readUnicodeStringLong(substr($recordData, 6));
				$value = $string['value'];
			} else {
				$string = $this->_readByteStringLong(substr($recordData, 6));
				$value = $string['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 = $this->_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: 0; size: 2; row index
		$row = $this->_GetInt2d($recordData, 0);
		// offset: 2; size: 2; col index
		$col = $this->_GetInt2d($recordData, 2);
		$columnString = PHPExcel_Cell::stringFromColumnIndex($col);
		// Read cell?
		if ( !is_null($this->getReadFilter()) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->_phpSheet->getTitle()) ) {
			// offset: 4; size: 2; XF index
			$xfIndex = $this->_GetInt2d($recordData, 4);
			// add style information
			if (!$this->_readDataOnly) {
				$this->_phpSheet->getCell($columnString . ($row + 1))->setXfIndex($this->_mapCellXfIndex[$xfIndex]);
			}
		}
	}
	/**
	 * Read MSODRAWING record
	 */
	private function _readMsoDrawing()
	{
		$length = $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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; id number
		//	cb: 2 bytes; size in bytes of following data
		//	data: var; subrecord data
		// for now, we are just interested in the second subrecord containing the object type
		$ot = $this->_GetInt2d($recordData, 4);
		$this->_objs[] = array(
			'type' => $ot,
		);
	}
	/**
	 * Read WINDOW2 record
	 */
	private function _readWindow2()
	{
		$length = $this->_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: 0; size: 2; option flags
		$options = $this->_GetInt2d($recordData, 0);
		// 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));
		}
	}
	/**
	 * Read SCL record
	 */
	private function _readScl()
	{
		$length = $this->_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: 0; size: 2; numerator of the view magnification
		$numerator = $this->_GetInt2d($recordData, 0);
		// offset: 2; size: 2; numerator of the view magnification
		$denumerator = $this->_GetInt2d($recordData, 2);
		// set the zoom scale (in percent)
		$this->_phpSheet->getSheetView()->setZoomScale($numerator * 100 / $denumerator);
	}
	/**
	 * Read PANE record
	 */
	private function _readPane()
	{
		$length = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_GetInt2d($recordData, 0);
			// offset: 2; size: 2; position of horizontal split
			$py = $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_GetInt2d($recordData, 1);
			// offset: 3; size: 2; index to column of the active cell
			$c = $this->_GetInt2d($recordData, 3);
			// offset: 5; size: 2; index into the following cell range list to the
			//  entry that contains the active cell
			$index = $this->_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 (!is_null($this->getReadFilter())) {
			$includeCellRange = false;
			$rangeBoundaries = PHPExcel_Cell::getRangeBoundaries($cellRangeAddress);
			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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 ($this->_includeCellRangeFiltered($cellRangeAddress)) {
					$this->_phpSheet->mergeCells($cellRangeAddress);
				}
			}
		}
	}
	/**
	 * Read HYPERLINK record
	 */
	private function _readHyperLink()
	{
		$length = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 (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 & $this->_GetInt2d($recordData, 28)) >> 0;
				// bit: 1; mask: 0x00000002; 0 = relative path, 1 = absolute path or URL
				$isAbsPathOrUrl = (0x00000001 & $this->_GetInt2d($recordData, 28)) >> 1;
				// bit: 2 (and 4); mask: 0x00000014; 0 = no description
				$hasDesc = (0x00000014 & $this->_GetInt2d($recordData, 28)) >> 2;
				// bit: 3; mask: 0x00000008; 0 = no text, 1 = has text
				$hasText = (0x00000008 & $this->_GetInt2d($recordData, 28)) >> 3;
				// bit: 7; mask: 0x00000080; 0 = no target frame, 1 = has target frame
				$hasFrame = (0x00000080 & $this->_GetInt2d($recordData, 28)) >> 7;
				// bit: 8; mask: 0x00000100; 0 = file link or URL, 1 = UNC path (inc. server name)
				$isUNC = (0x00000100 & $this->_GetInt2d($recordData, 28)) >> 8;
			// offset within record data
			$offset = 32;
			if ($hasDesc) {
				// offset: 32; size: var; character count of description text
				$dl = $this->_GetInt4d($recordData, 32);
				// offset: 36; size: var; character array of description text, no Unicode string header, always 16-bit characters, zero terminated
				$desc = $this->_encodeUTF16(substr($recordData, 36, 2 * ($dl - 1)), false);
				$offset += 4 + 2 * $dl;
			}
			if ($hasFrame) {
				$fl = $this->_GetInt4d($recordData, $offset);
				$offset += 4 + 2 * $fl;
			}
			// detect type of hyperlink (there are 4 types)
			$hyperlinkType = null;
			if ($isUNC) {
				$hyperlinkType = 'UNC';
			} else if (!$isFileLinkOrUrl) {
				$hyperlinkType = 'workbook';
			} else if (ord($recordData{$offset}) == 0x03) {
				$hyperlinkType = 'local';
			} else if (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 = $this->_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 = $this->_encodeUTF16(substr($recordData, $offset, $us - 2), false);
				$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 = $this->_GetInt2d($recordData, $offset);
				$offset += 2;
				// offset: var; size: 4; character count of the shortened file path and name, including trailing zero word
				$sl = $this->_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 = $this->_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 = $this->_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 = $this->_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 = $this->_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 = $this->_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 = $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($this->_data, $this->_pos + 4, $length);
		// move stream pointer forward to next record
		$this->_pos += 4 + $length;
	}
	/**
	 * Read DATAVALIDATION record
	 */
	private function _readDataValidation()
	{
		$length = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_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 = $this->_readUnicodeStringLong(substr($recordData, $offset));
		$promptTitle = $string['value'] !== chr(0) ?
			$string['value'] : '';
		$offset += $string['size'];
		// offset: var; size: var; title of the error box
		$string = $this->_readUnicodeStringLong(substr($recordData, $offset));
		$errorTitle = $string['value'] !== chr(0) ?
			$string['value'] : '';
		$offset += $string['size'];
		// offset: var; size: var; text of the prompt box
		$string = $this->_readUnicodeStringLong(substr($recordData, $offset));
		$prompt = $string['value'] !== chr(0) ?
			$string['value'] : '';
		$offset += $string['size'];
		// offset: var; size: var; text of the error box
		$string = $this->_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 = $this->_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 (Exception $e) {
			return;
		}
		$offset += $sz1;
		// offset: var; size: 2; size of the formula data for the first condition
		$sz2 = $this->_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 (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);
			$stRange = PHPExcel_Cell::extractAllCellReferencesInRange($stRange);
			foreach ($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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_GetInt4d($recordData, 12);
			switch ($sz) {
				case 0x14:
					// offset: 16; size: 2; color index for sheet tab
					$colorIndex = $this->_GetInt2d($recordData, 16);
					$color = $this->_readColor($colorIndex);
					$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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_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 = $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_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 = $this->_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 (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 = $this->_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 = $this->_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 = $this->_GetInt2d($recordData, 0);
		// offset: 2; size: 2; environment from which the file was written
		$env = $this->_GetInt2d($recordData, 2);
		// offset: 4; size: 4; length of the image data
		$lcb = $this->_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 = $this->_GetInt4d($iData, 0);
//			var_dump($bcSize);
			// offset: 4; size: 2; bcWidth, specifies the width of the bitmap, in pixels
			$bcWidth = $this->_GetInt2d($iData, 4);
//			var_dump($bcWidth);
			// offset: 6; size: 2; bcHeight, specifies the height of the bitmap, in pixels.
			$bcHeight = $this->_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 = $this->_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 = $this->_GetInt2d($this->_data, $this->_pos + 2);
		$recordData = substr($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 = $this->_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 = $this->_GetInt2d($this->_data, $this->_pos);
			// offset: 2; size: 2; length
			$length = $this->_GetInt2d($this->_data, $this->_pos + 2);
			$data .= substr($this->_data, $this->_pos + 4, $length);
			$spliceOffsets[$i] = $spliceOffsets[$i - 1] + $length;
			$this->_pos += 4 + $length;
			$nextIdentifier = $this->_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 = $this->_GetInt2d($formulaStructure, 0);
		// offset: 2; size: sz
		$formulaData = substr($formulaStructure, 2, $sz);
		// for debug: dump the formula data
		//echo '
';
	for ($i = 0; $i < strlen($string); $i++) {
		if (($i % 16) == 0) {
			echo '
';
			echo str_pad(strtoupper(dechex(floor($i/16))),3,'0',STR_PAD_LEFT),' ';
		}
		echo str_pad(strtoupper(dechex(ord($string{$i}))),2,'0',STR_PAD_LEFT),' ';
		if ((ord($string{$i}) >= 32) && (ord($string{$i}) <= 127)) {
			echo '(',$string{$i},') ';
		} else {
			echo '(¬) ';
		}
	}
	echo '