Mini Kabibi Habibi

Current Path : C:/Program Files/Adobe/Acrobat DC/Acrobat/Browser/WCFirefoxExtn/chrome/
Upload File :
Current File : C:/Program Files/Adobe/Acrobat DC/Acrobat/Browser/WCFirefoxExtn/chrome/WCFirefoxExtn.jar

PK
��rI�chrome/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
~�/X`�/X`�/XPK
v�rI�chrome/content/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
`�/X`�/X`�/XPK
��rI�
�
�
 �chrome/content/browser_status.jsSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X~�/X~�/X/*************************************************************************
*
* ADOBE CONFIDENTIAL
* ___________________
*
*  Copyright 2016 Adobe Systems Incorporated
*  All Rights Reserved.
*
* NOTICE:  All information contained herein is, and remains
* the property of Adobe Systems Incorporated and its suppliers,
* if any.  The intellectual and technical concepts contained
* herein are proprietary to Adobe Systems Incorporated and its
* suppliers and are protected by trade secret or copyright law.
* Dissemination of this information or reproduction of this material
* is strictly forbidden unless prior written permission is obtained
* from Adobe Systems Incorporated.
**************************************************************************/

/*
Progress Listeners for Document Download to Enable\Disable ConvertButton should be added
to this file if Enable\Disable is to be supported. Look at Perforce History of this file 
for cleanedup code.

Currently the event listener for context menu to show appropriate context menu options is registered.  
*/
window.addEventListener("load",registerMyContextMenuListener,false);

function registerMyContextMenuListener()
{
	try
	{
		if(document.getElementById("contentAreaContextMenu"))
		{
			document.getElementById("contentAreaContextMenu").addEventListener("popupshowing",web2pdf_OnContextMenuPopup,false);
		}
	}
	catch(err)
	{
		//alert("err =" + err);
	}
}

function registerMyCutomizableToolBarButton()
{
	try
	{
		var prefService = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefService);
		var prefs = prefService.getBranch("");
		var prefValue = prefs.getBoolPref("extensions.web2pdf.pref_create_toolbar_button_in_nav-bar");
		if(prefValue == true)
		{
			var myCutomizableToolBarButton = "acro_web2pdf_ConvertButton";
			var navBar = document.getElementById("nav-bar");
			if (navBar)
			{
				var curSet = navBar.currentSet.split(",");
				if (curSet.indexOf(myCutomizableToolBarButton) == -1) 
				{
					var pos = curSet.length;
					var set = curSet.slice(0, pos).concat(myCutomizableToolBarButton).concat(curSet.slice(pos));
					navBar.setAttribute("currentset", set.join(","));
					navBar.currentSet = set.join(",");
					document.persist(navBar.id, "currentset");
					prefs.setBoolPref("extensions.web2pdf.pref_create_toolbar_button_in_nav-bar", !prefValue);
					prefService.savePrefFile(null);
					try 
					{
						BrowserToolboxCustomizeDone(true);
					}
					catch (e) {}
				}
			}		
		}
	}
	catch(err)
	{
		//alert("err =" + err);
	}

}

//Firefox >= 4, Add ToolBar button in Navigation Bar
if(!(Application.extensions)) 
	registerMyCutomizableToolBarButton();PK
��rI�od����chrome/content/overlay_next.xulSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X<?xml version="1.0"?>

<?xml-stylesheet href="chrome://browser/skin/" type="text/css"?> 
<?xml-stylesheet href="chrome://browser/content/browser.css" type="text/css"?>
<?xml-stylesheet href="chrome://web2pdfextension/skin/web2pdf.css" type="text/css"?>

<!DOCTYPE overlay SYSTEM "chrome://web2pdfextension/locale/web2pdf.dtd">

<overlay
	id="acro_web2pdf_Overlay"
	xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" >
	<stringbundleset >
    		<stringbundle id="acro_web2pdf_JavaStrings" 
                  		src="chrome://web2pdfextension/locale/web2pdf.properties" />
  	</stringbundleset>
  <script type="application/x-javascript" 
		  src="chrome://web2pdfextension/content/web2pdf_utils.js" />

  <script type="application/x-javascript" 
		  src="chrome://web2pdfextension/content/web2pdf_prefs.js" />

  <script type="application/x-javascript" 
		  src="chrome://web2pdfextension/content/web2pdf_new.js" />
 
  <script type="application/x-javascript" 
		  src="chrome://web2pdfextension/content/web2pdf_conversion.js" />

  <script type="application/x-javascript" 
		  src="chrome://web2pdfextension/content/browser_status.js" />
			 
<popup id="contentAreaContextMenu">
	<menuseparator id="acro_web2pdf_ContextMenuSeparatorStart"/>
	<menuitem id="acro_web2pdf_ConvertContextMenu_SelectedLink" label="&web2pdf.menu.Convert_To_PDF_SelectedLink;"
	oncommand="web2pdf_ConvertToPDF(web2pdfCaller.MENU,web2pdfType.CONVERT,web2pdfContext.LINK); event.stopPropagation();"/>
	<menuitem id="acro_web2pdf_AppendContextMenu_SelectedLink" label="&web2pdf.menu.Add_To_Existing_SelectedLink;"
	oncommand="web2pdf_ConvertToPDF(web2pdfCaller.MENU,web2pdfType.APPEND,web2pdfContext.LINK); event.stopPropagation();"/>
	<menuitem id="acro_web2pdf_ConvertContextMenu" label="&web2pdf.menu.Convert_To_PDF;"
	oncommand="web2pdf_ConvertToPDF(web2pdfCaller.MENU,web2pdfType.CONVERT,web2pdfContext.PAGE); event.stopPropagation();"/>
	<menuitem id="acro_web2pdf_AppendContextMenu" label="&web2pdf.menu.Add_To_Existing;" 
	oncommand="web2pdf_ConvertToPDF(web2pdfCaller.MENU,web2pdfType.APPEND,web2pdfContext.PAGE); event.stopPropagation();"/>
	<menuitem id="acro_web2pdf_ConvertContextMenu_Selection" label="&web2pdf.menu.ConvertSelection;" 
	oncommand="web2pdf_ConvertToPDF(web2pdfCaller.MENU,web2pdfType.CONVERT,web2pdfContext.SELECTION); event.stopPropagation();"/>
	<menuitem id="acro_web2pdf_AppendContextMenu_Selection" label="&web2pdf.menu.AppendSelection;"  
	oncommand="web2pdf_ConvertToPDF(web2pdfCaller.MENU,web2pdfType.APPEND,web2pdfContext.SELECTION); event.stopPropagation();"/>
</popup>

<toolbarpalette id="BrowserToolbarPalette">
	<toolbarbutton id="acro_web2pdf_ConvertButton" image="chrome://web2pdfextension/skin/AX_WebCap_ConvertButton_Sm_N.png" 
	label="&web2pdf.ConvertButtonText;"	type="menu-button" tooltiptext="&web2pdf.menu.ToolTipText;"
	class='toolbarbutton-1 chromeclass-toolbar-additional'
	oncommand="web2pdf_ConvertToPDF(web2pdfCaller.TOOLBAR,web2pdfType.CONVERT,web2pdfContext.PAGE);" ConversionId="100" orient="horizontal">
		<menupopup onpopupshowing="web2pdf_InitPrefs(); event.stopPropagation();" oncommand="event.stopPropagation();">
			<menuitem id="acro_web2pdf_ConvertToPDF" image="chrome://web2pdfextension/skin/AX_WebCap_Converted_Sm_N.png" 
				label="&web2pdf.menu.Convert_To_PDF;" class="menuitem-iconic" 
				oncommand="web2pdf_ConvertToPDF(web2pdfCaller.TOOLBAR,web2pdfType.CONVERT,web2pdfContext.PAGE); event.stopPropagation();" />
			<menuitem id="acro_web2pdf_AddToExisting" image="chrome://web2pdfextension/skin/AX_Append_Sm_N.png" 
				label="&web2pdf.menu.Add_To_Existing;" class="menuitem-iconic" 
				oncommand="web2pdf_ConvertToPDF(web2pdfCaller.TOOLBAR,web2pdfType.APPEND,web2pdfContext.PAGE); event.stopPropagation();" />
			<menuitem id="acro_web2pdf_PrintWebPage" image="chrome://web2pdfextension/skin/AX_PrintWebPage_Sm_N.png"
				label="&web2pdf.menu.Print_Web_Page;" class="menuitem-iconic" 
				oncommand="web2pdf_ConvertToPDF(web2pdfCaller.TOOLBAR,web2pdfType.CONVERT,web2pdfContext.PRINT); event.stopPropagation();" />
			<menuitem id="acro_web2pdf_ConvertAndEmail" image="chrome://web2pdfextension/skin/AX_ConvertWebEmail_Sm_N.png"
				label="&web2pdf.menu.Convert_and_Email;" class="menuitem-iconic" 
				oncommand="web2pdf_ConvertToPDF(web2pdfCaller.TOOLBAR,web2pdfType.CONVERT,web2pdfContext.EMAIL); event.stopPropagation();" />
			<menuseparator />
			<menuitem id="acro_web2pdf_ViewResultInAcrobat" 
				label="&web2pdf.menu.View_Result_In_Acrobat;" prefstring="extensions.web2pdf.pref_open_in_acrobat"
				class="menuitem-iconic" type="checkbox" autoCheck="false" checked="false"
				oncommand="web2pdf_SavePrefs(event); event.stopPropagation();" />
			<menuitem id="acro_web2pdf_Prefrences" label="&web2pdf.menu.Prefrences;" class="menuitem-iconic" 
				oncommand="web2pdf_ShowConversionSettingsDialog(); event.stopPropagation();" />
		</menupopup>
	</toolbarbutton>
</toolbarpalette>
</overlay>
PK
��rIFpQ��chrome/content/statusdlg.jsSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X/*************************************************************************
*
* ADOBE CONFIDENTIAL
* ___________________
*
*  Copyright 2011 Adobe Systems Incorporated
*  All Rights Reserved.
*
* NOTICE:  All information contained herein is, and remains
* the property of Adobe Systems Incorporated and its suppliers,
* if any.  The intellectual and technical concepts contained
* herein are proprietary to Adobe Systems Incorporated and its
* suppliers and are protected by trade secret or copyright law.
* Dissemination of this information or reproduction of this material
* is strictly forbidden unless prior written permission is obtained
* from Adobe Systems Incorporated.
**************************************************************************/

// Global variables to keep track of various timers.
const CONVERSION_ANIMATION_TIMER = 100;

// Constants to identify events.
const UPDATE_LIST_ITEMS = 0;

onmessage = function(event){

	var web2pdf_doWait = event.data;
	if(web2pdf_doWait)
		setTimeout(function(){ UpdateStatusDlg(); }, CONVERSION_ANIMATION_TIMER);
	else
		UpdateStatusDlg();
};

function UpdateStatusDlg()
{
	postMessage(UPDATE_LIST_ITEMS);
}

// Called when Close button is pressed.
function web2pdf_CloseStatusDialog()
{
	window.close();
}
PK
��rI�^zV�� �chrome/content/statusdlg_new.xulSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
<?xml-stylesheet href="chrome://web2pdfextension/skin/web2pdf.css" type="text/css"?>

<!DOCTYPE dialog SYSTEM "chrome://web2pdfextension/locale/web2pdf.dtd">

<dialog id="acro_web2pdf_StatusDialog"
        title="&web2pdf.status_dlg.title;"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
	ondialogcancel="web2pdf_CloseStatusDialog();"
	buttons="&web2pdf.status_dlg.CloseButtonText;">
	<script type="application/x-javascript" 
        	src="chrome://web2pdfextension/content/statusdlg.js">
	</script>
	<stringbundleset >
    		<stringbundle id="acro_web2pdf_JavaStrings" 
                  		src="chrome://web2pdfextension/locale/web2pdf.properties" />
  	</stringbundleset>
	<listbox id="acro_web2pdf_StatusListBox" rows="7" style="overflow: auto" overflow="auto">
		<listitem id="acro_web2pdf_StatusListItem">
			<hbox align="center">
				<image src="chrome://web2pdfextension/skin/AX_WebCap_Converted_Sm_N.png"/>
				<label value=""/>
				<image src="chrome://web2pdfextension/skin/AX_ProgressSpin_Sm_01_N.png"/>
				<label value=" " style="max-width: 10em"/>
				<label value="-"/>
				<label value=" "/>
			</hbox>
		</listitem>
	</listbox>
	<hbox>
		<spacer flex="1"/>
		<button
			id="acro_web2pdf_StatusCloseButton"
			class="dialog"
			label="&web2pdf.status_dlg.CloseButtonText;" 
			oncommand="web2pdf_CloseStatusDialog();"/>
	</hbox>
</dialog> 

PK
��rI�1&�D�D$�chrome/content/web2pdf_conversion.jsSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X/*************************************************************************
*
* ADOBE CONFIDENTIAL
* ___________________
*
*  Copyright 2011 Adobe Systems Incorporated
*  All Rights Reserved.
*
* NOTICE:  All information contained herein is, and remains
* the property of Adobe Systems Incorporated and its suppliers,
* if any.  The intellectual and technical concepts contained
* herein are proprietary to Adobe Systems Incorporated and its
* suppliers and are protected by trade secret or copyright law.
* Dissemination of this information or reproduction of this material
* is strictly forbidden unless prior written permission is obtained
* from Adobe Systems Incorporated.
**************************************************************************/

var web2pdf_xpcomPath = null;
const PlatformSpecificPtr = ctypes.StructType("WCFFPlatformSpecific").ptr;
var SetStateCallbackType = ctypes.FunctionType(ctypes.default_abi, ctypes.void_t, [ctypes.int, ctypes.int]);
var DoneCallbackType = ctypes.FunctionType(ctypes.default_abi, ctypes.void_t, [ctypes.int, ctypes.int]);
var SetStateCallback;
var DoneCallback;

/************************************************************************************************
 *                                      web2pdf_Conversion()
 * ----------------------------------------------------------------------------------------------
 * This function initializes web2pdf_Conversion object.
 * REQUIRES: Nothing.
 * RETURNS: Nothing.
 * **********************************************************************************************/
function web2pdf_Conversion()
{
	//enums for conversion settings
	//if any change is made in these, then the enum in the C++ code must also be changed.
	this.UNSET = 0;
	this.OPEN_IN_ACROBAT = 1;
	this.APPEND = 1<<1;
	this.CONVERT_PAGE = 1<<2;
	this.CONVERT_LINK = 1<<3;
	this.CONVERT_SELECTION = 1<<4;
	this.PRINT = 1<<5;
	this.EMAIL = 1<<6;
	this.CALLER_TOOLBAR = 1<<7;
	this.CLEAN_FILE_ON_FAILURE = 1<<8;

	//enums for reporting conversion status
	//if any change is made in these, then the enum in the C++ code must also be changed.
	this.STATUS_WAITING = 10000;
	this.STATUS_DOWNLOADING = 10001;
	this.STATUS_CONVERTING = 10002;
	this.STATUS_SUCCESS = 10003;
	this.STATUS_ERROR = 10004;
	this.STATUS_NOINSTANCE = 10005;
	this.STATUS_FILELOCKED = 10006;
	this.STATUS_MISSINGLIB = 10007;

	//member variables
	this.m_conversionID = 0;
	this.m_conversionSettings = 0;
	this.m_currentState = this.STATUS_DOWNLOADING;
	this.m_url = null;
	this.m_domData = null;
	this.m_charSet = null;
	this.m_outFilePath = "";
	this.m_platformSpecific = null;
}

/************************************************************************************************
 *                                      InitPlatformSpecificData()
 * ----------------------------------------------------------------------------------------------
 * This function initializes the conversion progress dialog via dll calls.
 * REQUIRES: Nothing.
 * RETURNS: Nothing.
 * **********************************************************************************************/
web2pdf_Conversion.prototype.InitPlatformSpecificData = function(){
	if(web2pdf_FFExtnLib === null)
		web2pdf_openLib();
	if(web2pdf_FFExtnLib === null)
		return;

	try{
		var InitPlatformSpecificData = web2pdf_FFExtnLib.declare("_C_InitPlatformSpecificData", ctypes.default_abi, PlatformSpecificPtr);
		
		this.m_platformSpecific = InitPlatformSpecificData();
		
		if(this.m_platformSpecific.isNull())
			this.m_platformSpecific = null;
	}
	catch(err)
	{
		this.m_platformSpecific = null;
		alert(err);
	}
};

/************************************************************************************************
 *                                          ConvertToPDF()
 * ----------------------------------------------------------------------------------------------
 * This function sends all the data to the Firefox dlls. If fails, then dismissed the dialog and
 * shows the error alert.
 * REQUIRES: request: Conversion data object.
 * RETURNS: null
 * **********************************************************************************************/
web2pdf_Conversion.prototype.ConvertToPDF = function(request){
	if(web2pdf_FFExtnLib === null)
		web2pdf_openLib();
	if(web2pdf_FFExtnLib === null)
	{
		this.Done(this.STATUS_MISSINGLIB);
		return null;
	}
	
	// Initialize Platform Specific Data
	this.InitPlatformSpecificData();
	if(this.m_platformSpecific === null)
	{
		this.Done(this.STATUS_MISSINGLIB);
		return null;
	}
	
	this.m_currentState = this.STATUS_DOWNLOADING;
	this.m_url = request.url;

	// If we have encountered some error then throw the alert dialog after the conversion.
	// The main reason is that, background content process cannot throw alert dialog, so we
	// have to propagate the error string generated for an error caused while paring the
	// dom content to chrome process and throw from here.
	if ((typeof request.errorString !== 'undefined') && request.errorString !== "")
		alert(request.errorString);
	
	var domData = "";
	if(this.m_conversionSettings & this.CONVERT_SELECTION)
	{
		//A selection needs to be converted, get the selected content from the domWindow.
		domData = request.domData;
	}
	else if(this.m_conversionSettings & this.CONVERT_LINK)
	{
		//A link needs to be converted, there is no need to gather any domData.
		//We pass domData initialised to 0.
	}
	else //if((this.m_conversionSettings) & (this.CONVERT_PAGE|PRINT|EMAIL) )
	{
		//The whole page needs to be converted, get the dom content from the domWindow.
		domData = request.domData;
	}

	this.m_domData = domData;
	this.m_charSet = request.charSet;

	if(web2pdf_NumberOfConversionsPreceding(this.m_conversionID) <= 0)
		this.SendForConversion();
	else
		this.m_currentState = this.STATUS_WAITING;
	return null;
};

/************************************************************************************************
 *                                      SendForConversion()
 * ----------------------------------------------------------------------------------------------
 * This function sends all the data to the Firefox dlls. If fails, then dismissed the dialog and 
 * shows the error alert.
 * REQUIRES: Nothing.
 * RETURNS: Nothing.
 * **********************************************************************************************/
web2pdf_Conversion.prototype.SendForConversion = function(){

	this.m_currentState = this.STATUS_CONVERTING;
	try{
	
		var ConversionCall;
		if(this.m_conversionSettings & this.APPEND)
		{
			ConversionCall = "_C_AppendToExistingPDF";
		}
		else
		{
			ConversionCall = "_C_ConvertToNewPDF";
		}
		SetStateCallback = SetStateCallbackType.ptr(web2pdf_SetState, this);
		
		DoneCallback = DoneCallbackType.ptr(web2pdf_ConversionDone, this);

		var ConvertToPDF = web2pdf_FFExtnLib.declare(ConversionCall,
													 ctypes.default_abi,
													 ctypes.int,
													 PlatformSpecificPtr,
													 ctypes.char.ptr,
													 ctypes.int,
													 ctypes.char.ptr,
													 ctypes.char.ptr,
													 ctypes.char.ptr,
													 ctypes.char.ptr,
													 ctypes.int,
													 SetStateCallbackType.ptr,
													 DoneCallbackType.ptr);

		var result = ConvertToPDF(this.m_platformSpecific,
								  this.m_url, 
								  this.m_conversionSettings, 
								  this.m_domData, 
								  this.m_outFilePath,
								  this.m_charSet,
								  web2pdf_GetXpcomPath(),
								  this.m_conversionID,
								  SetStateCallback,
								  DoneCallback);
									
		if(!result)
		{
			var ReleasePlatformSpecificData = web2pdf_FFExtnLib.declare("_C_ReleasePlatformSpecificData", ctypes.default_abi, ctypes.int, PlatformSpecificPtr);
			
			var refCount = ReleasePlatformSpecificData(this.m_platformSpecific);
			if(refCount <= 0)
				this.m_platformSpecific = null;
			
			this.Done(this.STATUS_ERROR);
		}
	}
	catch(err)
	{
		var ReleasePlatformSpecificData = web2pdf_FFExtnLib.declare("_C_ReleasePlatformSpecificData", ctypes.default_abi, ctypes.int, PlatformSpecificPtr);
			
		var refCount = ReleasePlatformSpecificData(this.m_platformSpecific);
		if(refCount <= 0)
			this.m_platformSpecific = null;
		
		this.Done(this.STATUS_ERROR);
		//alert(err);
	}
};

/************************************************************************************************
 *                                       EmbedHTTPSResourcesFromList()
 * ----------------------------------------------------------------------------------------------
 * This function fetches both image data and CSS data. It dumps the image data and appends the file
 * name in the resources strings and appends the corresponding CSS data in the resource string.
 * REQUIRES: httpsImgSrcList: Image resources data links.
 *           httpsCSSHrefList: CSS data links.
 *           characterSet: Charset for CSS data.
 * RETURNS: Data resource string combining image and CSS strings with special Acrobat markers.
 * **********************************************************************************************/
web2pdf_Conversion.prototype.EmbedHTTPSResourcesFromList = function(httpsImgSrcList, httpsCSSHrefList, characterSet){
	var httpsResourcesString = "";

	if(httpsImgSrcList.length) {
		while(httpsImgSrcList.length) {
			var imgSrc = httpsImgSrcList.shift();
			if(imgSrc && imgSrc.length > 0 && imgSrc.search(/https:\/\//i) != -1) {
				var tempPath = "";
				tempPath = this.WriteImageToTempFile(imgSrc);
				if(tempPath.length > 0)
				{
					httpsResourcesString += "<AcroexchangeDownloadSeprator AcroexchangeDownloadUrl=";
					httpsResourcesString += imgSrc;
					httpsResourcesString += "><FILEPATH>";
					httpsResourcesString += tempPath;
					httpsResourcesString += "</FILEPATH></AcroexchangeDownloadSeprator>";
				}
			}			  
		}
	}
		
	// Now get CSS.
	if(httpsCSSHrefList.length) {
		while(httpsCSSHrefList.length) {
			var cssHref = httpsCSSHrefList.shift();
			if(cssHref && cssHref.length > 0 && cssHref.search(/https:\/\//i) !== -1) {
				var cssData = this.GetDataFromURL(cssHref, characterSet);
				if(cssData.length > 0) {
					httpsResourcesString += "<AcroexchangeDownloadSeprator AcroexchangeDownloadUrl=";
					httpsResourcesString += cssHref;
					httpsResourcesString += ">";
					httpsResourcesString += cssData;
					httpsResourcesString += "</AcroexchangeDownloadSeprator>";
				}
			}
		}
	}
	
	return httpsResourcesString;
};

/************************************************************************************************
*                                       GetDataFromURL()
* ----------------------------------------------------------------------------------------------
* This function fetches the whole data from a particular aURL and writes it back to local temporary
* storage.
* REQUIRES: aURL: URL of the data.
* RETURNS: The file path of the newly created file.
* **********************************************************************************************/
web2pdf_Conversion.prototype.WriteImageToTempFile = function(aURL)
{
	var tempFile = null;
	var tempPath = "";
	var urlC = aURL;
	const ioService = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService);
	const directory = Cc["@mozilla.org/file/directory_service;1"].getService(Ci.nsIProperties);
	const fileOutput = Cc["@mozilla.org/network/file-output-stream;1"].getService(Ci.nsIFileOutputStream);
	
	if(ioService && directory && fileOutput)
	{
		tempFile = directory.get("TmpD", Ci.nsIFile);
		if(tempFile)
		{
			tempFile.append("FFImages.tmp");  
			tempFile.createUnique(Components.interfaces.nsIFile.NORMAL_FILE_TYPE, 0600);  
			
			var channel = ioService.newChannel(urlC, null, null);
			if(channel !== null)
			{
				var count = 0;
				var inputStream = channel.open();
				if(inputStream === null)
					return "";

				var bstream = Cc["@mozilla.org/binaryinputstream;1"].createInstance(Ci.nsIBinaryInputStream); 
				bstream.setInputStream(inputStream);
				var bytes = "";
				while(bstream.available() > 0)
					bytes += bstream.readBytes(bstream.available());

				fileOutput.init(tempFile, -1, -1, 0); //open in default mode: write | create | truncate, with default permissions: 0664
				count = fileOutput.write(bytes, bytes.length);
				fileOutput.close();
				inputStream.close();
				bstream.close();
				tempPath = tempFile.path;
			}
		}
	}
	return tempPath;
};

/************************************************************************************************
*                                       GetDataFromURL()
* ----------------------------------------------------------------------------------------------
* This function fetches the whole data from a particular aURL and then converts it in appropriate
* data using aCharset.
* REQUIRES: aURL: URL of the data.
*           aCharSet: Charset of the data.
* RETURNS: The fetched data from given URL.
* **********************************************************************************************/
web2pdf_Conversion.prototype.GetDataFromURL = function(aURL, aCharSet){
	var urlC = aURL;
	try{
		const ioService = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService);
		if(ioService)
		{
			var channel = ioService.newChannel(urlC, null, null);
			if(channel)
			{
				var buf = "";
				var count = 0;
				var css = "";
				var inputStream = channel.open();
				if(inputStream === null)
					return "";

				var cstream = Cc["@mozilla.org/intl/converter-input-stream;1"].createInstance(Ci.nsIConverterInputStream);
				cstream.init(inputStream, aCharSet, -1, 0);
				var str = {};
				var read = 0;  
				do {
					read = cstream.readString(0xffffffff, str); // read as much as we can and put it in str.value
					css += str.value;
				} while (read !== 0);

				cstream.close();
				return css;
			}
		}
	}
	catch(err){
		//alert(err);
	}
	return "";
};

/************************************************************************************************
*                                               Done()
* ----------------------------------------------------------------------------------------------
* This function marks the current state of the conversion as done and updates the global result 
* cache accordingly.
* REQUIRES: state: current state of the conversion (done)
* RETURNS: Nothing.
* **********************************************************************************************/
web2pdf_Conversion.prototype.Done = function(state){
	this.m_currentState = state;
	web2pdf_resultCache[this.m_conversionID].done = true;
};

// Callbacks
/************************************************************************************************
*                              		web2pdf_SetState()
* ----------------------------------------------------------------------------------------------
* Set the current conversin state.
* REQUIRES: unused: unused
*           state: current state of the conversion.
* RETURNS: Nothing.
* **********************************************************************************************/
function web2pdf_SetState(unused, state)
{
	this.m_currentState = state;
}

/************************************************************************************************
*                              		web2pdf_ConversionDone()
* ----------------------------------------------------------------------------------------------
* The function dismissed the dialog as conversion is completed.
 * REQUIRES: unused: unused
 *           state: done state of the conversion.
 * RETURNS: Nothing.
* **********************************************************************************************/
function web2pdf_ConversionDone(unused, state)
{
	try{		
		var ReleasePlatformSpecificData = web2pdf_FFExtnLib.declare("_C_ReleasePlatformSpecificData", ctypes.default_abi, ctypes.int, PlatformSpecificPtr);
		
		var refCount = ReleasePlatformSpecificData(this.m_platformSpecific);
		if(refCount <= 0)
			this.m_platformSpecific = null;
		this.Done(state);
	} catch(err)
	{
		alert(err);
	}
}

/************************************************************************************************
*                              		web2pdf_GetXpcomPath()
* ----------------------------------------------------------------------------------------------
* This function returns the XPCOM path if already found. Otherwise, calculates and returns.
* REQUIRES: entry: Total entry count of the result cache.
* RETURNS: returns the number of preceeding conversions.
* **********************************************************************************************/
function web2pdf_GetXpcomPath()
{
	if(typeof web2pdf_xpcomPath === 'string')
		return web2pdf_xpcomPath;
		
	// Else, get the XPCOM Path.
	try{
		const dirService = Cc["@mozilla.org/file/directory_service;1"].getService(Ci.nsIDirectoryService);
		var properties = dirService.QueryInterface(Ci.nsIProperties);
		if (properties)
		{
			var file = null;
			file = properties.get("CurProcD", Ci.nsIFile);
			if(file)
			{
				var filename = "xpcom.dll";
				file.append(filename);
				filename = file.path;
				web2pdf_xpcomPath = filename;
			}
		}
	}catch(err)
	{
		alert(err);
	}
	return web2pdf_xpcomPath;
}
PK
��rI�H]��^�^%�chrome/content/web2pdf_framescript.jsSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X/*************************************************************************
*
* ADOBE CONFIDENTIAL
* ___________________
*
*  Copyright 2016 Adobe Systems Incorporated
*  All Rights Reserved.
*
* NOTICE:  All information contained herein is, and remains
* the property of Adobe Systems Incorporated and its suppliers,
* if any.  The intellectual and technical concepts contained
* herein are proprietary to Adobe Systems Incorporated and its
* suppliers and are protected by trade secret or copyright law.
* Dissemination of this information or reproduction of this material
* is strictly forbidden unless prior written permission is obtained
* from Adobe Systems Incorporated.
**************************************************************************/

const MAX_NUM_IMAGES_HTTPS = 20;

/*************************************************************************************************
*                                         EnlistHTTPSResourceURLs()
* ----------------------------------------------------------------------------------------------
* This function extracts all image and css links which are being fetched from the https links.
* These links are being enqueue from this document and later on will be used by Chrome process
* to download these resources from the network.
* REQUIRES: aHtmlDocument: HTML document.
*		 	httpsImgSrcArray: Links of all the CSS resources. (OUT)
*			httpsCSSHrefArray: Links of all the CSS resources. (OUT)
* RETURNS: None.
* **********************************************************************************************/
function EnlistHTTPSResourceURLs(aHtmlDocument, httpsImgSrcArray, httpsCSSHrefArray) {
	if(aHtmlDocument) {
	    //Populate HTTPS Image Src Array
		var imageList = aHtmlDocument.images;
		if(imageList && (typeof httpsImgSrcArray !== 'undefined') && httpsImgSrcArray !== null) {
			var numImages = imageList.length;
			var numHttpsImages = 0;
			for(var index = 0; index < numImages; index++) {
				var domNode = imageList.item(index);
				if (domNode)
				{
					var imageElement = domNode.QueryInterface(Components.interfaces.nsIDOMHTMLImageElement);
					if(imageElement) {
						var imgSrc = imageElement.src;
						if(imgSrc && imgSrc.length > 0 && imgSrc.search(/https:\/\//i) != -1) {
							numHttpsImages++;
							if(numHttpsImages > MAX_NUM_IMAGES_HTTPS)
								break;
							httpsImgSrcArray.push(new String(imgSrc));						
						}
					}
				}
			}
		}
		
		//Now populate HTTPS CSS Href Array
		var styleSheetList = aHtmlDocument.styleSheets;
		if(styleSheetList && (typeof httpsCSSHrefArray !== 'undefined') && httpsCSSHrefArray !== null) {
			var numStyleSheets = styleSheetList.length;
			for(var index = 0; index < numStyleSheets; index++) {
				var styleSheet = styleSheetList.item(index);
				if(styleSheet) {
					var href = styleSheet.href;
					if(href && href.length > 0 && href.search(/https:\/\//i) !== -1) {
						httpsCSSHrefArray.push(new String(href));	
					}
				}
			}
		}
	}
}

/*************************************************************************************************
*                                       GetDOMContentString()
* ----------------------------------------------------------------------------------------------
* This function fetches the web content of the window and encode the string with selected parameters
* REQUIRES: aDomDocument: Document of the whole window.
* RETURNS: Web-content of the whole string.
* **********************************************************************************************/
function GetDOMContentString(aDomDocument, errorString) {
	var docEncoder = null;
	try{
		docEncoder = Components.classes["@mozilla.org/layout/documentEncoder;1?type=text/html"];
		docEncoder = docEncoder.createInstance(Components.interfaces.nsIDocumentEncoder);
		
		if(docEncoder)
		{
			var encoderFlags = docEncoder.OutputAbsoluteLinks
							 | docEncoder.OutputPersistNBSP 
							 | docEncoder.OutputEncodeBasicEntities 
							 | docEncoder.OutputEncodeLatin1Entities 
							 | docEncoder.OutputEncodeHTMLEntities;
			
			docEncoder.init(aDomDocument, "text/html", encoderFlags);
			
			var charset = "unicode";
			charset = aDomDocument.characterSet;
			docEncoder.setCharset(charset);
			var contentString = docEncoder.encodeToString();
			return contentString;
		}
	}
	catch(err)
	{
		errorString = err;
		var contentString = "<html><body></body></html>";
		return contentString;
	}
};

/*************************************************************************************************
*                                       ParseDOMContent()
* ----------------------------------------------------------------------------------------------
* This function collects the DOM data from window. It collects all the web content of the whole
* page and prepare a domString of contenting all web content. All the image and css links are 
* being enqueued here, as this images and links will be downloaded locally i.e. file I/O is required 
* in this case. Now, Mozila recommends strongly that file I/O related calls should be peformed in 
* Chrome process. So later on, these resources will be downloaded and corresponding data will be 
* appended in domString.
* REQUIRES: aDomWindow: Whole window. 
*			httpsImgSrcList: Links of all the image resources. (OUT)
*			httpsCSSHrefList: Links of all the CSS resources. (OUT)
* RETURNS: DOM string of the whole window.
* **********************************************************************************************/
function ParseDOMContent(aDomWindow, httpsImgSrcArray, httpsCSSHrefArray, errorString) {
	var domDocument = aDomWindow.document;
	var domContentString = "";
	var domData = "";
	if(domDocument)
	{
		// Get page data.
		domData = GetDOMContentString(domDocument, errorString);
		var htmlDocument = domDocument.QueryInterface(Components.interfaces.nsIDOMHTMLDocument);
		var docURL = htmlDocument.URL;
		var downloadString = "<AcroexchangeDownloadSeprator AcroexchangeDownloadUrl=";
		downloadString += docURL;
		downloadString += ">";
		downloadString += domData;
		downloadString += "</AcroexchangeDownloadSeprator>";
		
		domContentString += downloadString;
		
		// Get HTTPS resources.
		if(docURL.search(/https:\/\//i) !== -1) {
			EnlistHTTPSResourceURLs(htmlDocument, httpsImgSrcArray, httpsCSSHrefArray);
		}
		
		// Find frames and insert them recursively
		var frames = domDocument.frames;
		if(frames)
		{
			var numFrames = frames.length;
			for(var frameIndex = 0; frameIndex < numFrames; frameIndex++) {
				var frameWindow = frames.item(frameIndex);
				if(!(typeof frameWindow === undefined)) {
					var frameContentString = ParseDOMContent(frameWindow, null, null, errorString);
					domContentString += frameContentString;
				}
			}
		}
	}
	return domContentString;
};

/*************************************************************************************************
*                                       GetEntireDOMSelectionString()
* ----------------------------------------------------------------------------------------------
* This function traverses from the dom node of the selection object to its topmost parent and 
* creates the dom selection string with the help of doc encoder. 
* REQUIRES: aDocEncoder: DOCEncoder to encode domElement string.
* 			aDomNode: DOMNode related to the object present inside the selection.
*			aDomDocument: Document on which selection is being done.
*			aSelectionString: Entire DOM string related from the aDomNode to top parent node.
* RETURNS: Whole selection string stating from aDomNode to top parent.
* **********************************************************************************************/
function GetEntireDOMSelectionString(aDocEncoder, aDomNode, aDomDocument, aSelectionString)
{
	if( !(aDocEncoder && aDomNode) || aSelectionString.length <= 0 )
		return;
		
	var parentNode = aDomNode.parentNode;
		
	while(parentNode)
	{
		var domElement;
		var domRange;
		var tagName;
		domElement = parentNode.QueryInterface(Components.interfaces.nsIDOMElement);
		if(domElement)
		{
			var outerHtml = "";
			tagName = domElement.tagName;
			if(tagName.toLowerCase() === "html")
				break;
		
			if(aDomDocument)
				domRange = aDomDocument.createRange();
			
			if(domRange)
			{
				domRange.selectNode(parentNode);
				var collapsed = domRange.collapsed;
				aDocEncoder.setRange(domRange);
				outerHtml = aDocEncoder.encodeToString();
			}
			
			if(outerHtml.length > 0)
			{
				var offset = outerHtml.search(">");
				if(offset > 0)
				{
					var temp = outerHtml.substr(0, offset+1);
					if(temp.length > 0 && tagName.length > 0)
					{
						tagName = "</" + tagName + ">";
						aSelectionString = temp + aSelectionString + tagName;
					}
				}
			}			
		}
		parentNode = parentNode.parentNode;
	}
	return aSelectionString;
};

/*************************************************************************************************
*                                      web2pdf_CleanUpDOM()
* ----------------------------------------------------------------------------------------------
* This function replaces the DOM strings metadata with the Adobe's metadata tag.
* REQUIRES: aDomString: DOM string. (OUT)
*			aCharset: Character Set.
* RETURNS: None. 
* **********************************************************************************************/
function web2pdf_CleanUpDOM(aDomString, aCharset)
{
	if(aDomString.length > 0 && aCharset.length > 0)
	{
		var metaTag = "<meta http-equiv=\"adobe-javascript\" content=\"disable\" charset=\"" + aCharset + "\">";
		aDomString.replace(/meta[^>]*[>]/i, metaTag);
	}
}

/*************************************************************************************************
*                                      GetDOMHeadString()
* ----------------------------------------------------------------------------------------------
* This function traverses all the HTML "head" elements and appends the data of the head element
* strings to the domHeadString.
* REQUIRES: aDomWindow: DOM window whose document's head tag we are dealing with.
*			aDocEncoder: DOCEncoder to encode the head element strings.
* RETURNS: Encoded "head" element string.
* **********************************************************************************************/
function GetDOMHeadString(aDomWindow, aDocEncoder)
{
	var domHeadString = "";
	var domDocument = aDomWindow.document;
	if(domDocument)
	{
		var headTag = "head";
		var headElementNodeList = domDocument.getElementsByTagName(headTag);
		if(headElementNodeList)
		{
			var numHeadElements = headElementNodeList.length;
			if(numHeadElements > 0)
			{
				var headElementNode = headElementNodeList[0];
				if(headElementNode)
				{
					var domRange = domDocument.createRange();
					if(domRange)
					{
						domRange.selectNode(headElementNode);
						aDocEncoder.setRange(domRange);
						var headString = aDocEncoder.encodeToString();
						if(headString)
						{
							var charset = "unicode";
							charset = domDocument.characterSet;
							web2pdf_CleanUpDOM(headString, charset);
							domHeadString += headString;
						}
					}
				}
			}
		}
	}
	return domHeadString;
};

/*************************************************************************************************
*                                      web2pdf_GetNumberNodes()
* ----------------------------------------------------------------------------------------------
* This function counts the depth/height relative to the parent node.
* REQUIRES: aDomNode: a dome node.
* RETURNS: height / depth of the aDomNode w.r.t top parent.
* **********************************************************************************************/
function web2pdf_GetNumberNodes(aDomNode)
{
	var count = 0;
	var parentNode = aDomNode.parentNode;
	if(parentNode)
	{
		count++;
		while(parentNode)
		{
			parentNode = parentNode.parentNode;
			if(parentNode)
				count++;
		}
	}
	return count;
}

/*************************************************************************************************
*                                     GetDOMSelectionString()
* ----------------------------------------------------------------------------------------------
* This function returns the entire DOM string of the selected window.
* REQUIRES: aDomWindow: Selection window.
*			errorString: Error occured during parsing. (OUT)
* RETURNS: Entire DOM string of the selection window.
* **********************************************************************************************/
function GetDOMSelectionString(aDomWindow, errorString) {
	var domSelectionString = "";
	try{
		var domDocument = aDomWindow.document;
		if(domDocument)
		{
			var selectionObj = aDomWindow.getSelection();
			var selectionRangeCount = 0;
			if(selectionObj)
			{
				selectionRangeCount = selectionObj.rangeCount;
				var selectionOuterHTML = "";
				var docEncoder = Components.classes["@mozilla.org/layout/documentEncoder;1?type=text/html"];
				docEncoder = docEncoder.createInstance(Components.interfaces.nsIDocumentEncoder);
				
				if(docEncoder)
				{
					var encoderFlags = docEncoder.OutputAbsoluteLinks
									 | docEncoder.OutputPersistNBSP 
									 | docEncoder.OutputEncodeBasicEntities 
									 | docEncoder.OutputEncodeLatin1Entities 
									 | docEncoder.OutputEncodeHTMLEntities;
					
					docEncoder.init(domDocument, "text/html", encoderFlags);
					
					if(selectionRangeCount > 0)
					{
						docEncoder.setSelection(selectionObj);
						var selectionString = docEncoder.encodeToString();
						if(selectionString.length > 0)
						{
							var domNodeStart = selectionObj.anchorNode;
							var domNodeEnd = selectionObj.focusNode;
							var domNode = (web2pdf_GetNumberNodes(domNodeStart) > web2pdf_GetNumberNodes(domNodeEnd)) ? domNodeEnd : domNodeStart;
							if(domNode)
							{
								selectionString = GetEntireDOMSelectionString(docEncoder, domNode, domDocument, selectionString);
							}
							var headHtml = GetDOMHeadString(aDomWindow, docEncoder);
							domSelectionString += headHtml + selectionString;
						}
					}
				}
			}
		}
	}
	catch(err)
	{
		errorString = err;
		content.console.log(err);
	}
	return domSelectionString;
};

/*************************************************************************************************
*                                         ParseDOMSelection()
* ----------------------------------------------------------------------------------------------
* This function collects the DOM data from a selection of a window. It collects all the web content
* from selection and prepare a domString of them. All the image and css links are being enqueued here,
* as this images and links will be downloaded locally i.e. file I/O is required in this case. Now,
* Mozila recommends strongly that file I/O related calls should be peformed in Chrome process. So
* later on, these resources will be downloaded and corresponding data will be appended in domString.
* REQUIRES: aDomWindow: Window containing the selection. 
*			httpsImgSrcList: Links of all the image resources.
*			httpsCSSHrefList: Links of all the CSS resources.
*			errorString: Error occured during parsing.	(OUT)
* RETURNS: DOM string of the selected window.
* **********************************************************************************************/
function ParseDOMSelection (aDomWindow, httpsImgSrcList, httpsCSSHrefList, errorString) {
	var domDocument = aDomWindow.document;
	var domSelectionString = "";
	if(domDocument)
	{
		var selectionObj = aDomWindow.getSelection();
		var selectionRangeCount = 0;
		if(selectionObj)
		{
			var selectionOuterHTML = GetDOMSelectionString(aDomWindow, errorString);
			var selectionHTMLString = "<html>" + selectionOuterHTML + "</html>"
			
			var compatModeStr = "";
			var domHTMLDocument = domDocument.QueryInterface(Components.interfaces.nsIDOMHTMLDocument);
			if(domHTMLDocument)
			{
				var compatStr = domHTMLDocument.compatMode;
				if( compatStr.toLowerCase == "css1compat")
					compatModeStr += "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML Strict//EN\">\n";
			}
			
			var docURL = domHTMLDocument.URL;
			if(docURL)
			{
				var selectionString = "<AcroexchangeDownloadSeprator AcroexchangeDownloadUrl=" + docURL + ">";
				selectionString += compatModeStr;
				selectionString += selectionHTMLString;
				selectionString += "</AcroexchangeDownloadSeprator>";
				domSelectionString += selectionString;
				
				// Collect the image and CSS resource links..
				if(docURL.search(/https:\/\//i) !== -1)
					EnlistHTTPSResourceURLs(domHTMLDocument, httpsImgSrcList, httpsCSSHrefList);
			}
		}
	}
	return domSelectionString;
};

/*************************************************************************************************
*                                   IsSelectionMade()
* ----------------------------------------------------------------------------------------------
* This function checks whether any selection is made on the page content or not.
* REQUIRES: nothing.
* RETURNS: true -> if a selection is made. false -> if there is no selection.
* **********************************************************************************************/

function IsSelectionMade()
{
	var selection = content.getSelection();
	var cnt = 0;
	if(selection.isCollapsed)
	{
		var frames = content.frames;
		if(typeof frames != 'undefined')
		{
			for(cnt=0;cnt<frames.length;cnt++)
				if((frames[cnt].getSelection()!==null) && (!frames[cnt].getSelection().isCollapsed))
					return true;
		}
	}
	else return true;
	return false;

	}


/* With Electrolysis on, Multiprocess firefox window is enabled by default. So, Firefox UI process i.e.
*  browser process cannot interact with web contect directly anymore and the UI remains responsive all
*  the time. In order to achieve this, frame script is written which works in the background. Chrome and
*  content process script can communicate with each other via message manager asynchronously.
*  
*  Here, we have maintained a basic protocol that we will listen only those messages having messageName
*  as 'web2pdfextension:MessageFromChrome'. And in reply, framescript will send the messages with name
*  'web2pdfextension:MessageFromContent'. We are using, Browser message manager here, so message passing
*  is limited to one separate tab only. https://developer.mozilla.org/en-US/Firefox/Multiprocess_Firefox/Message_Manager
*/

addMessageListener("web2pdfextension:MessageFromChrome", function(message) {
	// The functionality name asked by the Chrome Process script via browser message manager.
	var askedFunction = message.data.FunctionName;

	if (askedFunction == "TellIfSelectionIsMade") {
		
		var isSelctionMade=IsSelectionMade();
		
		sendAsyncMessage("web2pdfextension:MessageFromContent", {
			reply:"TellIfSelectionIsMadeReply",					/* Unique reply command */
			replyWithSlection: isSelctionMade
		});
	}
	
	// Get the document title, for the file picker dialog..
	else if (askedFunction == "InitWithDocTitleAndArgs") {
		var documentTitle = "";
		if (content.document && content.document.title)
			documentTitle = content.document.title;
		
		sendAsyncMessage("web2pdfextension:MessageFromContent", {
			reply:"InitWithDocTitleAndArgsReply",						/* Unique reply command */
			replyWithDocTitle: documentTitle,							/* Document title */
			replyWithConversionCaller: message.data.ConversionCaller,	/* Conversion Caller */
			replyWithConversionType: message.data.ConversionType,		/* Conversion Type */
			replyWithConversionContext: message.data.ConversionContext	/* Conversion Context */
		});
	}
	
	// Get the page data for all the invocation points other than selection..
	else if (askedFunction == "GetPageData") {
		var charSet = "unicode";
		if (content.document && content.document.characterSet != null)
			charSet = content.document.characterSet;
		
		var documentTitle = "";
		if (content.document && content.document.title)
			documentTitle = content.document.title;
		
		//The whole page needs to be converted, build the dom content by extracting data from the window.
		var httpsImgSrcList = new Array();
		var httpsCSSHrefList = new Array();
		var domData = "";
		var errorString = "";
		
		// For functionlity like "Link" (convert/append), page DOM data is not required.
		if (message.data.DomDataRequired)
			domData = ParseDOMContent(content, httpsImgSrcList, httpsCSSHrefList, errorString);
		
		sendAsyncMessage("web2pdfextension:MessageFromContent", {
			reply:"GetPageDataReply",									/* Unique reply command */
			replyWithDocTitle: documentTitle,							/* Document title */
			replyWithConversionCaller: message.data.ConversionCaller,	/* Conversion Caller: MENU, TOOLBAR */
			replyWithConversionType: message.data.ConversionType,		/* Conversion Type: CONVERT, APPEND */
			replyWithConversionContext: message.data.ConversionContext,	/* Conversion Context: PAGE, LINK, SELECTION, PRINT, EMAIL*/
			replyWithFilePath: message.data.TheFilePath,				/* File Path, chosen via file picker dialog */
			replyWithDOMData: domData,									/* DOM data of entire page */
			replyWithCharacterSet: charSet,								/* Charset of the document */
			replyWithImageSourceList: httpsImgSrcList,					/* Links of HTTPS image resources */ 
			replyWithCSSHrefList: httpsCSSHrefList,						/* Links of HTTPS CSS resources */
			replyWithError: errorString									/* Error occured during parsing */
		});
	}
	
	// Get the DOM data of the selected portion of the page..
	else if (askedFunction == "GetSelectionData") {
		var charSet = "unicode";
		if (content.document && content.document.characterSet != null)
			charSet = content.document.characterSet;
		
		var documentTitle = "";
		if (content.document && content.document.title)
			documentTitle = content.document.title;
		
		// find the right window which actually has the selection
		var domWindow = content;
		var url = message.data.URL;
		if(content.getSelection().isCollapsed) {
			var frames = content.frames;
			if(typeof frames !== 'undefined')
			{
				for(var count = 0; count < frames.length; count++)
				{
					if(!frames[count].getSelection().isCollapsed) // Check if selection is in this frame.
					{	
						domWindow = frames[count];
						url = domWindow.document.QueryInterface(Components.interfaces.nsIDOMHTMLDocument).URL;
						break;
					}
				}
			}
		}
			
		//The whole page needs to be converted, build the dom content by extracting data from the window.
		var httpsImgSrcList = new Array();
		var httpsCSSHrefList = new Array();
		var errorString = "";
		var domData = ParseDOMSelection(domWindow, httpsImgSrcList, httpsCSSHrefList, errorString);
		
		sendAsyncMessage("web2pdfextension:MessageFromContent", {
			reply:"GetSelectionDataReply",								/* Unique reply command */
			replyWithDocTitle: documentTitle,							/* Document title */
			replyWithConversionCaller: message.data.ConversionCaller,	/* Conversion Caller */
			replyWithConversionType: message.data.ConversionType,		/* Conversion Type */
			replyWithConversionContext: message.data.ConversionContext,	/* Conversion Context */
			replyWithFilePath: message.data.TheFilePath,				/* File Path, chosen via file picker dialog */
			replyWithDOMData: domData,									/* DOM data of entire selection */
			replyWithURL: url,											/* URL of the selected DOM window */
			replyWithCharacterSet: charSet,								/* Charset of the document */
			replyWithImageSourceList: httpsImgSrcList,					/* Links of HTTPS image resources */
			replyWithCSSHrefList: httpsCSSHrefList,						/* Links of HTTPS CSS resources */
			replyWithError: errorString									/* Error occured during parsing */
		});
	}
});PK
��rIO�ԏ_�_��chrome/content/web2pdf_new.jsSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X/*************************************************************************
*
* ADOBE CONFIDENTIAL
* ___________________
*
*  Copyright 2011 Adobe Systems Incorporated
*  All Rights Reserved.
*
* NOTICE:  All information contained herein is, and remains
* the property of Adobe Systems Incorporated and its suppliers,
* if any.  The intellectual and technical concepts contained
* herein are proprietary to Adobe Systems Incorporated and its
* suppliers and are protected by trade secret or copyright law.
* Dissemination of this information or reproduction of this material
* is strictly forbidden unless prior written permission is obtained
* from Adobe Systems Incorporated.
**************************************************************************/

/* Load JS Ctypes Javascript module */
Components.utils.import("resource://gre/modules/ctypes.jsm");
/* Global var for DLL. */
var web2pdf_FFExtnLib = null;
/* Global var for KeepAlive method. */
var web2pdf_KeepLibAlive = null;

//---------------------------------------------------------------------------------------------------------------------
// Functions to handle opening and closing of DLL.

/*************************************************************************************************
*                                     web2pdf_openLib()
* ----------------------------------------------------------------------------------------------
* Function to handle the opening of DLL if not already opened.
* REQUIRES: Nothing.
* RETURNS: Nothing.
* **********************************************************************************************/
function web2pdf_openLib()
{
	if( web2pdf_FFExtnLib === null)
	{
		try
		{
			const ioService = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService);
			var uri = ioService.newURI('resource://WCFirefoxExtnLib', null, null);
			if (uri instanceof Components.interfaces.nsIFileURL)
			{
				web2pdf_FFExtnLib = ctypes.open(uri.file.path);
				// Declare the KeepAlive method to keep the lib alive.
				web2pdf_KeepLibAlive = web2pdf_FFExtnLib.declare("_C_KeepAlive", ctypes.default_abi, ctypes.void_t);
			}
		}
		catch(err)
		{
			web2pdf_KeepLibAlive = null;
			if(web2pdf_FFExtnLib)
				web2pdf_FFExtnLib.close();
			web2pdf_FFExtnLib = null;
		}
	}
}

/*************************************************************************************************
*                                     web2pdf_closeLib()
* ----------------------------------------------------------------------------------------------
* Function to handle the opening of DLL if not closed already.
* REQUIRES: Nothing.
* RETURNS: Nothing.
* **********************************************************************************************/
function web2pdf_closeLib()
{
	if(web2pdf_FFExtnLib !== null)
	{
		web2pdf_KeepLibAlive = null;
		web2pdf_FFExtnLib.close();
		web2pdf_FFExtnLib = null;
	}
}

//GLOBALS-------------------------------------------------------------------------------------------
//Global variables to keep track of various timers
var CONVERSION_ANIMATION_FIRE_TIMER = 10;
var CONVERSION_ANIMATION_STOP_TIMER = 10;
var CONVERSION_ANIMATION_TIMER = 800;
var CONVERT2PDF_INTERNAL_TIMER = 100;
var CONVERT2PDF_FIRE_TIMER = 500;
var STATUS_CLEAN_TIMER = 500;
var FEAT_QUIT_TIMER = 2000;
var CONVERSION_TIMEOUT = 200000;

// Constants to identify events.
const UPDATE_LIST_ITEMS = 0;

//Global to keep the selected link url on which right click is done.
var web2pdf_selectedLinkURL = null;

//Global enums to used to pass conversion settings
var web2pdfCaller = { MENU:0, TOOLBAR:1 };
var web2pdfType = { CONVERT:0, APPEND:1 };
var web2pdfContext = { PAGE:0, LINK:1, SELECTION:2, PRINT:3, EMAIL:4 };

/*************************************************************************************************
*                                     web2pdf_StatusCache()
* ----------------------------------------------------------------------------------------------
* Status Cache object used to keep track of the conversion progress and update status dialog.
* REQUIRES: conversion: web2pdf_Conversion object
*			docTitle: document title
*			errString: error string
*			runningFEAT: whether object is created for FEAT
* RETURNS: Nothing.
* **********************************************************************************************/
function web2pdf_StatusCache(conversion,docTitle,errString,runningFEAT) // Status Cache Object Constructor
{
	this.conversion = conversion;
	this.docTitle = docTitle;
	this.errString = errString;
	this.runningFEAT = runningFEAT;
	// Following 2 flags ae important:
	// If shown and not done, then conversion is active.
	// If shown and done, then conversion is done, due to be removed.
	// If hidden and done, then conversion timed out and was hidden, but it completed and is due to be removed.
	// If hidden and not done, then conversion is done and removed. Or conversion timed out and still active.
	this.show = true;
	this.done = false;
	//
	this.timeStarted = 0;
	this.timeElapsed = 0;
}	

var web2pdf_statusDlg; 			//To hold the common status dialog for all conversions.
var web2pdf_resultCache = new Array();	//Array to store Status Cache for conversions.
var web2pdf_statusDlgWorker = null;			// To hold the status dialog worker.
var browserWeakMap = new WeakMap();		// A week browser map, which has already loaded the framescript..

//GLOBALS--------------------------------end------------------------------------------------------------


//---------------------------------------Functions called from main Overlay------------------------------

/*************************************************************************************************
*                                     web2pdf_ShowConversionSettingsDialog()
* ----------------------------------------------------------------------------------------------
* Shows the conversion settings dialog.
* REQUIRES: Nothing.
* RETURNS: Nothing.
* **********************************************************************************************/
function web2pdf_ShowConversionSettingsDialog()
{
	if(web2pdf_FFExtnLib === null)
		web2pdf_openLib();
	if(web2pdf_FFExtnLib === null)
		return;
	
	var ShowConversionSettingsDialog = web2pdf_FFExtnLib.declare("_C_ShowConversionSettingsDialog",
												ctypes.default_abi,
												ctypes.int32_t); // return type
	ShowConversionSettingsDialog();
}

/*************************************************************************************************
*                                     web2pdf_alert()
* ----------------------------------------------------------------------------------------------
* Shows alert during the conversion process.
* REQUIRES: Nothing.
* RETURNS: Nothing.
* **********************************************************************************************/
function web2pdf_alert(msg)
{
	alert(msg);
}

/*************************************************************************************************
*                                     web2pdf_ConvertToPDF()
* ----------------------------------------------------------------------------------------------
* Common invocation point for all the major workflows except the preference window.
* REQUIRES: conversionCaller: Invocation points -> MENU, TOOLBAR
*	 		conversionType: Conversion types -> CONVERT, APPEND
*			conversionContext: Context of the conversion -> PAGE, LINK, SELECTION, PRINT, EMAIL
* RETURNS: 0 to exit normally.
* **********************************************************************************************/
function web2pdf_ConvertToPDF(conversionCaller, conversionType, conversionContext)
{
	// load the frame script via browser message manager i.e. the script will load only once per browser.
	var BrowserObj = gBrowser.selectedBrowser;
	var BrowserMessageManager = BrowserObj.messageManager;
	if (!browserWeakMap.has(BrowserObj) || !browserWeakMap.get(BrowserObj)) {
		BrowserMessageManager.loadFrameScript("chrome://web2pdfextension/content/web2pdf_framescript.js", true);
		browserWeakMap.set(BrowserObj, true);
	}
	
	BrowserMessageManager.addMessageListener("web2pdfextension:MessageFromContent", handleContentScriptMessage);
	BrowserMessageManager.sendAsyncMessage("web2pdfextension:MessageFromChrome", {
		FunctionName: "InitWithDocTitleAndArgs",	/* Unique functionality command */
		ConversionCaller: conversionCaller,			/* Conversion Caller */
		ConversionType: conversionType,				/* Conversion Type */
		ConversionContext: conversionContext		/* Conversion Context */
	});
	return 0;
}

/*************************************************************************************************
*                                  web2pdf_InvokeConvertToPDFInternal()
* ----------------------------------------------------------------------------------------------
* This function receives the DOM data and all related conversion parameters via message manager and
* determines which URL to proceed with and starts a times for conversion. 
* REQUIRES: requestObj: Objects containing all the required parameters for conversion.
* RETURNS: Nothing.
* **********************************************************************************************/
function web2pdf_InvokeConvertToPDFInternal(requestObj) {
	var browser = parent.getBrowser();
	var url = browser.currentURI.spec;
	
	if(requestObj.conversionContext === web2pdfContext.LINK) { //link is right clicked
		url = web2pdf_selectedLinkURL;
	}
	// If a selection is being converted to PDF which is invoked via menu, then message manager will basically provide the
	// correct URL associated with that selection window.
	else if(requestObj.conversionCaller === web2pdfCaller.MENU && requestObj.conversionContext === web2pdfContext.SELECTION) {
		url = requestObj.url;
	}
	
	setTimeout((function(){web2pdf_ConvertToPDFInternal({
														url: url, 											/* URL of the DOM window */
														theFilePath: requestObj.theFilePath, 				/* File Path, chosen via file picker dialog */
														conversionCaller: requestObj.conversionCaller, 		/* Conversion Caller */
														conversionType: requestObj.conversionType, 			/* Conversion Type */
														conversionContext: requestObj.conversionContext, 	/* Conversion Context */
														contentTitle: requestObj.contentTitle,				/* Document title */
														domData: requestObj.domData,						/* DOM data */
														characterSet: requestObj.characterSet,				/* Charset of the document */
														httpsImgSrcList: requestObj.httpsImgSrcList,		/* Links of HTTPS image resources */
														httpsCSSHrefList: requestObj.httpsCSSHrefList,		/* Links of HTTPS CSS resources */
														errorString: requestObj.errorString					/* Error occured during parsing */
													}); }),CONVERT2PDF_INTERNAL_TIMER);
	return 0;
}

/*************************************************************************************************
*                              web2pdf_LoadFunctionalityWithContentTitle()
* ----------------------------------------------------------------------------------------------
* This function receives the document title via message manager and throws the File picker dialog
* depending upon the conversion context. It picks up the file and askes the content process script
* to provide the required DOM data depending upon the conversion caller and context. 
* REQUIRES: requestObj: Objects containing all the required parameters for conversion.
* RETURNS: Nothing.
* **********************************************************************************************/
function web2pdf_LoadFunctionalityWithContentTitle(requestObj)
{
	var theFile = null;
	if(requestObj.conversionContext !== web2pdfContext.PRINT)
	{
		if(requestObj.conversionType === web2pdfType.APPEND) {
			theFile = web2pdf_FileOpenSaveDialog(false, requestObj.sanitizedContentTitle); //open the "File Open" dialog
		}
		else {
			theFile = web2pdf_FileOpenSaveDialog(true, requestObj.sanitizedContentTitle); //open the "File Save" dialog
		}
		
		if(theFile === null) { //cancel was pressed
			return 0;
		}
	}

	var theFilePath = "";
	if (theFile && theFile.path)
		theFilePath = theFile.path;
	
	// Message manager is already loaded, so just send the message to content process script via message manager..
	var BrowserMessageManager = gBrowser.selectedBrowser.messageManager;
	BrowserMessageManager.addMessageListener("web2pdfextension:MessageFromContent", handleContentScriptMessage);
	
	// Check whether the user wants to convert the whole page or just selection..
	if(requestObj.conversionCaller === web2pdfCaller.MENU && requestObj.conversionContext === web2pdfContext.SELECTION) {
		BrowserMessageManager.sendAsyncMessage("web2pdfextension:MessageFromChrome", {
			FunctionName: "GetSelectionData",					/* Unique functionality command */
			ConversionCaller: requestObj.conversionCaller,		/* Conversion Caller */
			ConversionType: requestObj.conversionType,			/* Conversion Type */
			ConversionContext: requestObj.conversionContext,	/* Conversion Context */
			TheFilePath: theFilePath,							/* File Path, chosen via file picker dialog */
			URL: parent.getBrowser().currentURI.spec			// URL of the whole window, in case we don't 
																// find any proper selection window, we need to return the same URL..
		});
	}
	else {
		BrowserMessageManager.sendAsyncMessage("web2pdfextension:MessageFromChrome", {
			FunctionName: "GetPageData",						/* Unique functionality command */
			ConversionCaller: requestObj.conversionCaller,		/* Conversion Caller */
			ConversionType: requestObj.conversionType,			/* Conversion Type */
			ConversionContext: requestObj.conversionContext,	/* Conversion Context */
			TheFilePath: theFilePath,							/* File Path, chosen via file picker dialog */
			DomDataRequired: ((requestObj.conversionContext != web2pdfContext.LINK) ? true : false)
																// If we convert the link then, DOM string of the entire window is not required.
		});
	}
}

//Functions called from main Overlay-------------END-----------------------------

//Functions called locally from this file-------BEGIN----------------------------

/*************************************************************************************************
*                              		web2pdf_NumberOfConversionsPreceding()
* ----------------------------------------------------------------------------------------------
* It checks the total number of preceeding conversions.
* REQUIRES: entry: Total entry count of the result cache.
* RETURNS: returns the number of preceeding conversions.
* **********************************************************************************************/
function web2pdf_NumberOfConversionsPreceding(entry)
{
	var resultCount = 0;
	var resultCacheSize = web2pdf_resultCache.length;
	if(resultCacheSize > 0)
	{
		var i = 0;
		for( i = entry-1; i >= 0; i--)
		{
			if ((typeof web2pdf_resultCache[i] !== 'undefined') && web2pdf_resultCache[i].show===true)
				resultCount++;
		}
	}
	return resultCount;
}

/*************************************************************************************************
*                              		web2pdf_SanitizeFileName()
* ----------------------------------------------------------------------------------------------
* This function receives a file name then replaces the unwanted characters with '_'
* REQUIRES: fileName: A file name.
* RETURNS: A sanitized filename.
* **********************************************************************************************/
function web2pdf_SanitizeFileName(fileName)
{
	var sanitizedFileName = "";
	var len = fileName.length;
	var indx = 0;
	var count = 0;
	var prevChar = "";
	var ch = "";
	while( indx < len && count < 80 )
	{
		ch = fileName.charAt(indx);
		if( ch != "<" && ch != ">" && ch != ":" && ch != '"' && ch != "/" && ch != "\\" && ch != "|" && ch != "?" && ch != "*" )
		{
			prevChar = ch;
			sanitizedFileName = sanitizedFileName + ch;
			count = count + 1;		    
		}
		else
		{
			if(prevChar != "_")
		    {
		    	sanitizedFileName = sanitizedFileName + "_";
		    	prevChar = "_";
		    	count = count + 1;
		   	}
		}
		indx = indx + 1;
	}
	return sanitizedFileName;
}

/*************************************************************************************************
*                                    web2pdf_FileOpenSaveDialog()
* ----------------------------------------------------------------------------------------------
* This function opens a file "save" or "open" dialog depending upon the parameters and returns the
* file handle.
* REQUIRES: save: True for "File Save" dialog, false for "File open dialog"..
* 			theDefaultFileName
* RETURNS: returns the file.
* **********************************************************************************************/
function web2pdf_FileOpenSaveDialog(save, theDefaultFileName)
{
	var nsIFilePicker = Components.interfaces.nsIFilePicker;
	var theFile=null;
	var len = 0;
	try
	{
		var fp = Components.classes["@mozilla.org/filepicker;1"].createInstance(nsIFilePicker);
	
		var javaStrings = document.getElementById("acro_web2pdf_JavaStrings");
		fp.defaultExtension="pdf";
		if(save===true)
			fp.init(window, javaStrings.getString('web2pdf.SaveTitle'), nsIFilePicker.modeSave);
		else
			fp.init(window, javaStrings.getString('web2pdf.OpenTitle'), nsIFilePicker.modeOpen);
	
		fp.appendFilter("Adobe PDF","*.pdf");
		fp.defaultExtension = "pdf";
		if(save === true) {
			// If theDefaultFileName is not valid, then pick the proper name from the resources..
			if ((typeof theDefaultFileName === 'undefined') || theDefaultFileName === "")
				theDefaultFileName = javaStrings.getString('web2pdf.UntitledFileName');

			fp.defaultString = theDefaultFileName;
		}
		
		var res = fp.show();
		if((res == nsIFilePicker.returnOK || res == nsIFilePicker.returnReplace) && fp.file && fp.file.path)
		{
			if(save)
			{
				var filePath = new String(fp.file.path);
				len = filePath.length;
				var ext = filePath.substring(len-4,len+1);
				if(ext != ".pdf")
					filePath = filePath + ".pdf" ;
				theFile=Components.classes["@mozilla.org/file/local;1"].createInstance(Components.interfaces.nsILocalFile);
				theFile.initWithPath(filePath);
				if(ext!=".pdf" && theFile.exists())
				{
					var replaceWarning = javaStrings.getString('web2pdf.ReplaceWarning');
					var answer = confirm(theFile.path + " " + replaceWarning);
					if(!answer)
						theFile = web2pdf_FileOpenSaveDialog(save, theDefaultFileName);
				}
			}
			else
				theFile = fp.file;
		}
		if(theFile && !save)
		{
			if(!(theFile.isReadable() && theFile.isWritable()))
			{
				alert(javaStrings.getString('web2pdf.NoWritePermissionOnSelectedFile'));
				theFile = web2pdf_FileOpenSaveDialog(save, theDefaultFileName);
			}
		}
	}
	catch(err)
	{
	}

	return theFile;
}

/*************************************************************************************************
*                                    web2pdf_doStatusDlgEvent()
* ----------------------------------------------------------------------------------------------
* This function updates the status of the conversion dialog.
* REQUIRES: eventData: event data for which the progress bar should be updated.
* RETURNS: nothing.
* **********************************************************************************************/
function web2pdf_doStatusDlgEvent(eventData)
{
	if(eventData === UPDATE_LIST_ITEMS)
	{
		if (typeof web2pdf_statusDlg !== 'undefined')
			web2pdf_DoConversionAnimation();
	}
}

/*************************************************************************************************
*                                   web2pdf_ConvertToPDFInternal()
* ----------------------------------------------------------------------------------------------
* This function receives the conversion parameter object, then creates a new conversion object and
* fires the conversion with a conversion dialog.
* REQUIRES: requestObj: holds the conversion settings.
* RETURNS: Nothing.
* **********************************************************************************************/
function web2pdf_ConvertToPDFInternal(requestObj) 
{
	var url = requestObj.url;
	var httpsImgSrcList = requestObj.httpsImgSrcList;
	var httpsCSSHrefList = requestObj.httpsCSSHrefList;
	
	// Make new conversion instance.
	var newConversion = new web2pdf_Conversion();
	
	// Prepare the conversion DOM string -> (Page Content + HTTPS resources)
	var htmlResourceString = newConversion.EmbedHTTPSResourcesFromList(httpsImgSrcList, httpsCSSHrefList, requestObj.characterSet);
	var domData = requestObj.domData + htmlResourceString;
	
	// Set Conversion Settings.
	try
	{
		var prefs = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefBranch);
		if(prefs)
		{
			var isChecked = prefs.getBoolPref("extensions.web2pdf.pref_open_in_acrobat");
			if( isChecked === true )
				newConversion.m_conversionSettings |= newConversion.OPEN_IN_ACROBAT;
		}
	}
	catch(err)
	{
	}
	
	// Set the conversion settings as per ConversionCaller, ConversionContext & ConversionType..
	if(requestObj.conversionType === web2pdfType.APPEND) 	
		newConversion.m_conversionSettings |= newConversion.APPEND;
	else
		newConversion.m_conversionSettings |= newConversion.CLEAN_FILE_ON_FAILURE;
			
	if(requestObj.conversionContext === web2pdfContext.PAGE)      
		newConversion.m_conversionSettings |= newConversion.CONVERT_PAGE;
	
	if(requestObj.conversionCaller === web2pdfCaller.TOOLBAR)
	{
		newConversion.m_conversionSettings |= newConversion.CALLER_TOOLBAR;
		if(requestObj.conversionContext === web2pdfContext.PRINT)
			newConversion.m_conversionSettings |= newConversion.PRINT;
		if(requestObj.conversionContext === web2pdfContext.EMAIL)
			newConversion.m_conversionSettings |= newConversion.EMAIL;
	}
	else if(requestObj.conversionCaller === web2pdfCaller.MENU)
	{
		if(requestObj.conversionContext === web2pdfContext.LINK)
			newConversion.m_conversionSettings |= newConversion.CONVERT_LINK;
		if(requestObj.conversionContext === web2pdfContext.SELECTION) 
			newConversion.m_conversionSettings |= newConversion.CONVERT_SELECTION;
	}
	
	// Set the proper out-file path..
	if( (typeof requestObj.theFilePath !== 'undefined') && requestObj.theFilePath !== null)
		newConversion.m_outFilePath = requestObj.theFilePath;
	else
		newConversion.m_outFilePath = "";
	
	// Set the document title of the output PDF..
	var docTitle = null;
	if(typeof requestObj.contentTitle !== 'undefined' && requestObj.contentTitle != null)
		docTitle = "" + requestObj.contentTitle;	

	if(web2pdf_statusDlgWorker === null)
	{
		web2pdf_statusDlgWorker = new ChromeWorker("chrome://web2pdfextension/content/statusdlg.js");  
	  
		web2pdf_statusDlgWorker.onmessage = function(event) {  
			web2pdf_doStatusDlgEvent(event.data);
		};
	  
		web2pdf_statusDlgWorker.onerror = function(error) {  
			alert(error.message);
		};  
	}
	
	if(web2pdf_statusDlgWorker && (typeof web2pdf_statusDlgWorker !== 'undefined'))
	{
		web2pdf_AddStatusCache(newConversion, docTitle, false);
		if ((typeof web2pdf_statusDlg === 'undefined') || web2pdf_statusDlg.closed)
			web2pdf_statusDlg = window.openDialog("chrome://web2pdfextension/content/statusdlg_new.xul","","chrome,width=550,height=220,resizable=yes");
		else
			web2pdf_statusDlg.focus();
		
		// Get the worker going.
		web2pdf_statusDlgWorker.postMessage(false);
		
		setTimeout((function(){newConversion.ConvertToPDF({
															url:url, 							/* URL of the selected window */
															domData:domData, 					/* DOM data string */
															charSet:requestObj.characterSet,	/* Character Set */
															errorString: requestObj.errorString});	/* Error String */
														}), CONVERT2PDF_FIRE_TIMER);
	}
	
	return 0;
}

/*************************************************************************************************
*                                     web2pdf_AddStatusCache()
* ----------------------------------------------------------------------------------------------
* Adds current conversion to the result status cache. The conversion will be picked up one by one
* sequentially.
* REQUIRES: conversion: web2pdf_Conversion object
*			docTitle: document title
*			runningFEAT: whether object is created for FEAT
* RETURNS: Nothing.
* **********************************************************************************************/
function web2pdf_AddStatusCache(conversion, docTitle, runningFEAT)
{
	var errString = "";
	
	var newStatusCache = new web2pdf_StatusCache(conversion,docTitle,errString,runningFEAT);
	
	var newLength = web2pdf_resultCache.push(newStatusCache);
	web2pdf_resultCache[newLength - 1].conversion.m_conversionID = newLength - 1;
	if(web2pdf_NumberOfConversionsPreceding(newLength - 1) <= 0)
		newStatusCache.timeStarted = new Date().getTime();
}

//Functions called locally from this file--------END-----------------------------

//Functions for Status Dialog-----------BEGIN----------------------------

/*************************************************************************************************
*                                     web2pdf_CloseStatusDialog()
* ----------------------------------------------------------------------------------------------
* Close the status dialog.
* REQUIRES: Nothing.
* RETURNS: Nothing.
* **********************************************************************************************/
function web2pdf_CloseStatusDialog()
{
    web2pdf_statusDlgWorker.terminate();
	web2pdf_statusDlgWorker = null;
	web2pdf_statusDlg.close();
}

/*************************************************************************************************
*                                     web2pdf_GetFileNameFromFilePath()
* ----------------------------------------------------------------------------------------------
* Get the file name from the file path.
* REQUIRES: filePath: file path.
* RETURNS: file name of the file present on this file path.
* **********************************************************************************************/
function web2pdf_GetFileNameFromFilePath(filePath)
{
	var fileName = filePath;
	try
	{
		var theFile = Components.classes["@mozilla.org/file/local;1"].createInstance(Components.interfaces.nsILocalFile);
		if(theFile)
		{
			theFile.initWithPath(filePath);
			fileName = theFile.leafName;
		}
	}catch(err)
	{
	}
	return fileName;
}

/*************************************************************************************************
*                                  web2pdf_FindNextWaitingConversionID()
* ----------------------------------------------------------------------------------------------
* Get the next conversion settings from the status queue.
* REQUIRES: entry: current conversion id, so check for the next element from the status cache.
* RETURNS: -1
* **********************************************************************************************/
function web2pdf_FindNextWaitingConversionID(entry)
{
	var resultCache = web2pdf_resultCache;
	var resultCacheSize = resultCache.length;

	for( var nextEntry = entry + 1; nextEntry < resultCacheSize; nextEntry++)
	{
		if ((typeof resultCache[nextEntry] !== 'undefined') && resultCache[nextEntry].show===true && resultCache[nextEntry].done === false)
			return nextEntry;
	}
	return -1;
}

/*************************************************************************************************
*                                  web2pdf_RemoveFromList()
* ----------------------------------------------------------------------------------------------
* Marks the conversion's show entry as false - it signifies that conversion is removed.
* REQUIRES: entry: item to be removed.
* RETURNS: Nothing.
* **********************************************************************************************/
function web2pdf_RemoveFromList(entry)
{
	var cacheEntry = web2pdf_resultCache[entry];
	cacheEntry.show=false;
	cacheEntry.done=false;
	cacheEntry.conversion=0; 
	cacheEntry.docTitle=0;
	if(cacheEntry.runningFEAT)
	{
		setTimeout((function(){web2pdf_QuitFirefox(false);}),FEAT_QUIT_TIMER);
	}
}

/*************************************************************************************************
*                                   web2pdf_StartNextConversion()
* ----------------------------------------------------------------------------------------------
* Find and invoke the next conversion.
* REQUIRES: entry: Index of current process item.
* RETURNS: nothing.
* **********************************************************************************************/
function web2pdf_StartNextConversion(entry)
{
	var nextConversionId = web2pdf_FindNextWaitingConversionID(entry);
	if(nextConversionId >= 0)
	{
		var nextCacheEntry = web2pdf_resultCache[nextConversionId];
		if(nextCacheEntry.conversion)
		{
			nextCacheEntry.timeStarted = new Date().getTime();
			nextCacheEntry.conversion.SendForConversion();
		}
	}
}

/*************************************************************************************************
*                                   web2pdf_incrProgressSpinCount()
* ----------------------------------------------------------------------------------------------
* Increase progress spin count.
* REQUIRES: nothing.
* RETURNS: Get the filepath of the image source.
* **********************************************************************************************/
var web2pdf_ProgressSpinCount = 1;
function web2pdf_incrProgressSpinCount()
{
	++web2pdf_ProgressSpinCount;
	if(web2pdf_ProgressSpinCount > 12)
		web2pdf_ProgressSpinCount = 1;
}

/*************************************************************************************************
*                                   web2pdf_getProgressSpinIcon()
* ----------------------------------------------------------------------------------------------
* Get the spinner icon.
* REQUIRES: nothing.
* RETURNS: Get the filepath of the image source.
* **********************************************************************************************/
function web2pdf_getProgressSpinIcon()
{
	if(web2pdf_ProgressSpinCount < 10)
		return "chrome://web2pdfextension/skin/AX_ProgressSpin_Sm_0" + web2pdf_ProgressSpinCount + "_N.png";
	else
		return "chrome://web2pdfextension/skin/AX_ProgressSpin_Sm_" + web2pdf_ProgressSpinCount + "_N.png";
}

/*************************************************************************************************
*                                   web2pdf_SetNewListItem()
* ----------------------------------------------------------------------------------------------
* This function adds, Removes entries from the status list. Also does some animation.
* REQUIRES: newListItem: item list to be inserted in the status list.
*			entry: position of the new item in the status list.
* RETURNS: nothing.
* **********************************************************************************************/
function web2pdf_SetNewListItem(newListItem, entry)
{
	var cacheEntry = web2pdf_resultCache[entry];
	var conversionStatus = cacheEntry.conversion.m_currentState;
	var conversionSettings = cacheEntry.conversion.m_conversionSettings;
	var javaStrings = document.getElementById("acro_web2pdf_JavaStrings");

	// set the list item row values
	if(conversionSettings & cacheEntry.conversion.PRINT)
		newListItem.firstChild.childNodes[0].src = "chrome://web2pdfextension/skin/AX_PrintWebPage_Sm_N.png";
	else if(conversionSettings & cacheEntry.conversion.EMAIL)
		newListItem.firstChild.childNodes[0].src = "chrome://web2pdfextension/skin/AX_ConvertWebEmail_Sm_N.png";
	else if(conversionSettings & cacheEntry.conversion.APPEND)
		newListItem.firstChild.childNodes[0].src = "chrome://web2pdfextension/skin/AX_Append_Sm_N.png";
	else
		newListItem.firstChild.childNodes[0].src = "chrome://web2pdfextension/skin/AX_WebCap_Converted_Sm_N.png";
	
	if(conversionSettings & cacheEntry.conversion.PRINT)
	{
		if(cacheEntry.docTitle)
			newListItem.firstChild.childNodes[5].value = cacheEntry.docTitle;
		else
			newListItem.firstChild.childNodes[5].value = cacheEntry.conversion.m_url;
	}
	else
		newListItem.firstChild.childNodes[5].value = web2pdf_GetFileNameFromFilePath(cacheEntry.conversion.m_outFilePath);
	
	
	 if(conversionStatus === cacheEntry.conversion.STATUS_WAITING) //waiting for conversion
	{
		newListItem.firstChild.childNodes[3].value = javaStrings.getString('web2pdf.Status_Waiting');
		newListItem.firstChild.childNodes[2].src = web2pdf_getProgressSpinIcon();
	}
	else if(conversionStatus === cacheEntry.conversion.STATUS_DOWNLOADING) //downloading
	{
		newListItem.firstChild.childNodes[3].value = javaStrings.getString('web2pdf.Status_Downloading');
		newListItem.firstChild.childNodes[2].src = "chrome://web2pdfextension/skin/AX_State_Downloading_Sm_N.png";
	}
	else if(conversionStatus === cacheEntry.conversion.STATUS_CONVERTING) //converting
	{
		newListItem.firstChild.childNodes[3].value = javaStrings.getString('web2pdf.Status_Converting');
		newListItem.firstChild.childNodes[2].src = web2pdf_getProgressSpinIcon();
	}
	else
	{
		if(conversionStatus === cacheEntry.conversion.STATUS_SUCCESS) //success	
		{
			newListItem.firstChild.childNodes[3].value = javaStrings.getString('web2pdf.Status_Success');
			newListItem.firstChild.childNodes[2].src = "chrome://web2pdfextension/skin/AX_State_Done_Success_Sm_N.png";
		}
		else //error condition
		{
			newListItem.firstChild.childNodes[3].value = javaStrings.getString('web2pdf.Status_Error');
			
			if(conversionStatus === cacheEntry.conversion.STATUS_ERROR) //error in conversion
			{
				if(cacheEntry.errString && cacheEntry.errString.length > 0)
				{
					newListItem.firstChild.childNodes[3].value += " - "+cacheEntry.errString;
					setTimeout((function(){web2pdf_alert(cacheEntry.errString);}),STATUS_CLEAN_TIMER/10);
				}
				else
				{
					setTimeout((function(){web2pdf_alert(javaStrings.getString('web2pdf.Unknown_Error'));}),STATUS_CLEAN_TIMER/10);
				}
			}
			else if(conversionStatus === cacheEntry.conversion.STATUS_FILELOCKED) //file is locked
			{
				setTimeout((function(){web2pdf_alert(javaStrings.getString('web2pdf.File_Locked_Error'));}),STATUS_CLEAN_TIMER/10);
			}
			else if(conversionStatus === cacheEntry.conversion.STATUS_MISSINGLIB) //a library could not be loaded.
			{
				// Do nothing.
			}
			else //(conversionStatus === cacheEntry.conversion.STATUS_NOINSTANCE) //conversion instance/status for this conversion not found
			{
				setTimeout((function(){web2pdf_alert(javaStrings.getString('web2pdf.Unknown_Error'));}),STATUS_CLEAN_TIMER/10);
			}
				
			newListItem.firstChild.childNodes[2].src = "chrome://web2pdfextension/skin/AX_State_Done_Error_Sm_N.png";
		}	
		web2pdf_RemoveFromList(entry); 
		web2pdf_StartNextConversion(entry);
	}
}

/*************************************************************************************************
*                                   web2pdf_DoConversionAnimation()
* ----------------------------------------------------------------------------------------------
* This function adds, Removes entries from the status list. Also does some animation.
* REQUIRES: nothing.
* RETURNS: nothing.
* **********************************************************************************************/
function web2pdf_DoConversionAnimation()
{
	var listBox = web2pdf_statusDlg.document.getElementById("acro_web2pdf_StatusListBox");
	var listItem = 0;
	var newListItem = 0;
	var i = 0;
	var j = 0;
	var flag=false;
		
	var entriesToShow = new Array();

	var listBoxNumRows = listBox.getRowCount();
	if(listBoxNumRows<=0)
	{
		setTimeout("web2pdf_CloseStatusDialog()",CONVERSION_ANIMATION_STOP_TIMER);
		return 0;
	}	
	else
	{
		flag=false;
		for(i=0; i < web2pdf_resultCache.length; i++)
		{
			if ((typeof web2pdf_resultCache[i] !== 'undefined') && web2pdf_resultCache[i].show===true)
			{
				entriesToShow[j++]=i;
				if(flag===false)
				{
					web2pdf_resultCache[i].timeElapsed = new Date().getTime() - web2pdf_resultCache[i].timeStarted;
					if(web2pdf_resultCache[i].timeElapsed > CONVERSION_TIMEOUT)
					{
						var javaStrings=document.getElementById("acro_web2pdf_JavaStrings");
						web2pdf_resultCache[i].show=false;
						
						setTimeout((function(){web2pdf_alert(javaStrings.getString('web2pdf.Unknown_Error'));}),STATUS_CLEAN_TIMER/10);
						
						web2pdf_StartNextConversion(i);
					}	
					flag=true;
				}
			}
			else if(web2pdf_resultCache[i].done === true && web2pdf_resultCache[i].show === false)
			{
				// Conversion timed out earlier, but somehow got completed. Delete the conversion.
				web2pdf_RemoveFromList(i);
			}
		}

		//get the copy of first item
		listItem = listBox.firstChild.cloneNode(true);

		//remove all entries from list box.
		while (listBox.firstChild) {
			listBox.removeChild(listBox.firstChild);
		}

		//insert the entries
		for(i=0;i<j;i++)
		{
			newListItem = listItem.cloneNode(true);
			listBox.appendChild(newListItem);
			web2pdf_SetNewListItem(newListItem,entriesToShow[i]);
		}
		web2pdf_incrProgressSpinCount();
		web2pdf_statusDlgWorker.postMessage(true);
	}
	return 0;
}

//Functions for Status Dialog------------END-----------------------------

//Functions to identify the context type--------BEGIN----------------------------


/*************************************************************************************************
*                                   web2pdf_GetLinkURLIfClicked()
* ----------------------------------------------------------------------------------------------
* This function checks whether user (right) clicks on a url or not.
* REQUIRES: Nothing.
* RETURNS: Link URL where user right clicks.
* **********************************************************************************************/
function web2pdf_GetLinkURLIfClicked() 
{
	var linkURL = null;
	if(gContextMenu.onLink) {
		linkURL = gContextMenu.linkURL;
	}
	return linkURL;
}

/*************************************************************************************************
*                                   web2pdf_OnContextMenuPopup()
* ----------------------------------------------------------------------------------------------
* This function appends the elements in the right-click context menu of the firefox.
* REQUIRES: Nothing.
* RETURNS: Nothing.
* **********************************************************************************************/
function web2pdf_OnContextMenuPopup() // gets called when context menu is opened.
{	

	
	
	var BrowserObj = gBrowser.selectedBrowser;
	var BrowserMessageManager = BrowserObj.messageManager;
	if (!browserWeakMap.has(BrowserObj) || !browserWeakMap.get(BrowserObj)) {
		BrowserMessageManager.loadFrameScript("chrome://web2pdfextension/content/web2pdf_framescript.js", true);
		browserWeakMap.set(BrowserObj, true);
	}
	
	BrowserMessageManager.addMessageListener("web2pdfextension:MessageFromContent", handleContentScriptMessage);
	BrowserMessageManager.sendAsyncMessage("web2pdfextension:MessageFromChrome", {
		FunctionName: "TellIfSelectionIsMade"	/* Unique functionality command */
	});
}

function web2pdf_AddContextMenuItems(isSelectionMade)
{	

	var menu1 = document.getElementById("acro_web2pdf_ConvertContextMenu_SelectedLink");
	var menu2 = document.getElementById("acro_web2pdf_AppendContextMenu_SelectedLink");
	var menu3 = document.getElementById("acro_web2pdf_ConvertContextMenu");
	var menu4 = document.getElementById("acro_web2pdf_AppendContextMenu");
	var menu5 = document.getElementById("acro_web2pdf_ConvertContextMenu_Selection");
	var menu6 = document.getElementById("acro_web2pdf_AppendContextMenu_Selection");

	menu1.hidden=true;	
	menu2.hidden=true;	
	menu3.hidden=true;	
	menu4.hidden=true;	
	menu5.hidden=true;	
	menu6.hidden=true;	

	if(isSelectionMade===true) 	
	{
		//selection is made
		menu5.hidden=false;	
		menu6.hidden=false;	
	}
	else			
	{	
		web2pdf_selectedLinkURL = web2pdf_GetLinkURLIfClicked();
		if(web2pdf_selectedLinkURL!==null)		
		{
			//link is right clicked
			menu1.hidden=false;	
			menu2.hidden=false;	
		}
		else			
		{
			//nothing special, page is right clicked
			menu3.hidden=false;	
			menu4.hidden=false;	
		}
	}
}


//Functions to identify the context type---------END-----------------------------

/*************************************************************************************************
*                                   handleContentScriptMessage()
* ----------------------------------------------------------------------------------------------
* This function handles all the incoming messages from the background Content Process script.
* REQUIRES: message: a message, sent by content process script.
* Content of message:
* name 		-> String containing the message name.
* sync 		-> Boolean declaring whether the message was send synchronously or aynchronously.
* data 		-> The JSON object passed as the second parameter to sendAsyncMessage().
* target 	-> The XUL <browser> element from which this message was sent.
* objects 	-> An object whose properties are any CPOWs exposed by the sender as the third argument to sendAsyncMessage()
*
* RETURNS: Nothing.
* **********************************************************************************************/
function handleContentScriptMessage(message) {
	var BrowserMessageManager = gBrowser.selectedBrowser.messageManager;
	BrowserMessageManager.removeMessageListener("web2pdfextension:MessageFromContent", handleContentScriptMessage);
	
	if (message.data.reply == "TellIfSelectionIsMadeReply") { // Unique reply code for 'TellIfSelectionIsMade'
					
				web2pdf_AddContextMenuItems(message.data.replyWithSlection);	
					
					}
	
	
	else if (message.data.reply == "InitWithDocTitleAndArgsReply") { // Unique reply code for 'InitWithDocTitleAndArgs'
		var javaStrings = document.getElementById("acro_web2pdf_JavaStrings");
		var documentDeafultTitle = javaStrings.getString('web2pdf.UntitledFileName');
		var docTitleViaMM = message.data.replyWithDocTitle;
		if ((typeof docTitleViaMM !== 'undefined') && docTitleViaMM !== "") {
			var fileName = new String(docTitleViaMM);
			var sanitizedfileName = web2pdf_SanitizeFileName(fileName);
			documentDeafultTitle = sanitizedfileName;
		}
		
		web2pdf_LoadFunctionalityWithContentTitle({	sanitizedContentTitle: documentDeafultTitle,                    /* Sanitized document title */
													conversionCaller: message.data.replyWithConversionCaller,       /* Conversion Caller */
													conversionType: message.data.replyWithConversionType,           /* Conversion Type */
													conversionContext: message.data.replyWithConversionContext });  /* Conversion Context */
	}
	else if (message.data.reply == "GetPageDataReply") {    // Unique reply code for 'GetPageData'
		web2pdf_InvokeConvertToPDFInternal({theFilePath: message.data.replyWithFilePath,                /* File Path, chosen via file picker dialog */
											conversionCaller: message.data.replyWithConversionCaller,   /* Conversion Caller */
											conversionType: message.data.replyWithConversionType,       /* Conversion Type */
											conversionContext: message.data.replyWithConversionContext, /* Conversion Context */
											contentTitle: message.data.replyWithDocTitle,               /* Document title */
											domData: message.data.replyWithDOMData,                     /* DOM data of entire selection */
											characterSet: message.data.replyWithCharacterSet,           /* Charset of the document */
											httpsImgSrcList: message.data.replyWithImageSourceList,     /* Links of HTTPS image resources */
											httpsCSSHrefList: message.data.replyWithCSSHrefList,        /* Links of HTTPS CSS resources */
											errorString: message.data.replyWithError});                 /* Error occured during parsing */
	}
	else if (message.data.reply == "GetSelectionDataReply") { // Unique reply code for 'GetSelectionData'
		web2pdf_InvokeConvertToPDFInternal({theFilePath: message.data.replyWithFilePath,                /* File Path, chosen via file picker dialog */
											conversionCaller: message.data.replyWithConversionCaller,   /* Conversion Caller */
											conversionType: message.data.replyWithConversionType,       /* Conversion Type */
											conversionContext: message.data.replyWithConversionContext, /* Conversion Context */
											contentTitle: message.data.replyWithDocTitle,               /* Document title */
											domData: message.data.replyWithDOMData,                     /* DOM data of entire selection */
											url: message.data.replyWithURL,                             /* URL of the selected DOM window */
											characterSet: message.data.replyWithCharacterSet,           /* Charset of the document */
											httpsImgSrcList: message.data.replyWithImageSourceList,     /* Links of HTTPS image resources */
											httpsCSSHrefList: message.data.replyWithCSSHrefList,        /* Links of HTTPS CSS resources */
											errorString: message.data.replyWithError});                 /* Error occured during parsing */
	}
	else {
		// Unwanted reply. Skip!
	}
}PK
��rI|н�""�chrome/content/web2pdf_prefs.jsSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X/*************************************************************************
*
* ADOBE CONFIDENTIAL
* ___________________
*
*  Copyright 2016 Adobe Systems Incorporated
*  All Rights Reserved.
*
* NOTICE:  All information contained herein is, and remains
* the property of Adobe Systems Incorporated and its suppliers,
* if any.  The intellectual and technical concepts contained
* herein are proprietary to Adobe Systems Incorporated and its
* suppliers and are protected by trade secret or copyright law.
* Dissemination of this information or reproduction of this material
* is strictly forbidden unless prior written permission is obtained
* from Adobe Systems Incorporated.
**************************************************************************/

// initPrefs
//   Initializes the preferences panel to the current values
function web2pdf_InitPrefs(event) {

	var prefService = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefService);
	var prefs = prefService.getBranch("");

	var element = document.getElementById("acro_web2pdf_ViewResultInAcrobat");
	if (!element) 
		return true;

	var attrValue = element.getAttribute("prefstring");
	var isChecked = prefs.getBoolPref(attrValue);
	if( isChecked == true )
		element.setAttribute("checked","true");
	else
		element.setAttribute("checked","false");
		 
	return true;
}

function web2pdf_SavePrefs(event)
{	
	var prefService = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefService);
	var prefs = prefService.getBranch("");
	
	var element = document.getElementById("acro_web2pdf_ViewResultInAcrobat");
	if (!element) 
		return;
		
	var attrValue = element.getAttribute("prefstring");
	var isChecked = prefs.getBoolPref(attrValue);
	isChecked = !isChecked;
	prefs.setBoolPref(attrValue, isChecked);
	prefService.savePrefFile(null);
	
	if( isChecked == true )
		element.setAttribute("checked","true");
	else
		element.setAttribute("checked","false");
		
	return;
}

PK
��rIR��*�chrome/content/web2pdf_utils.jsSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X/*************************************************************************
*
* ADOBE CONFIDENTIAL
* ___________________
*
*  Copyright 2016 Adobe Systems Incorporated
*  All Rights Reserved.
*
* NOTICE:  All information contained herein is, and remains
* the property of Adobe Systems Incorporated and its suppliers,
* if any.  The intellectual and technical concepts contained
* herein are proprietary to Adobe Systems Incorporated and its
* suppliers and are protected by trade secret or copyright law.
* Dissemination of this information or reproduction of this material
* is strictly forbidden unless prior written permission is obtained
* from Adobe Systems Incorporated.
**************************************************************************/

function web2pdf_GetFeatSavePath()
{
	var tempFilePath = Components.classes["@mozilla.org/file/directory_service;1"].getService(Components.interfaces.nsIProperties).get("TmpD", Components.interfaces.nsIFile);
	tempFilePath.append("savetopdfpath.txt");
	return tempFilePath;
}

function web2pdf_GetXPCOMPath()
{
	var tempFilePath = Components.classes["@mozilla.org/file/directory_service;1"].getService(Components.interfaces.nsIProperties).get("CurProcD", Components.interfaces.nsIFile);
	tempFilePath.append("xpcom.dll");
	return tempFilePath;
}

function web2pdf_QuitFirefox(aForceQuit)
{
	var appStartup = Components.classes['@mozilla.org/toolkit/app-startup;1'].getService(Components.interfaces.nsIAppStartup);
	
  	// eAttemptQuit, 0x02 will try to close each XUL window, but the XUL window can cancel the quit
  	// process if there is unsaved data. 
  	//eForceQuit, 0x03 will quit no matter what.
  	var quitSeverity = 0x02;
  	if(aForceQuit)
  		quitSeverity = 0x03;
  
    appStartup.quit(quitSeverity);
}
PK
w�rI�chrome/locale/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/X`�/XPK
v�rI�chrome/locale/ar_AE/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
`�/X`�/X`�/XPK
�rI��x���chrome/locale/ar_AE/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label						"Adobe Acrobat - Create PDF">
<!ENTITY web2pdf.AppName					"Adobe Acrobat - Create PDF">
<!ENTITY web2pdf.ConvertButtonText				"Convert">
<!ENTITY web2pdf.prefstree.label				"web2pdf">
<!ENTITY web2pdf.status_dlg.title				"Conversion to PDF Progress">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Convert Link Target to Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Append Link Target to Existing PDF">
<!ENTITY web2pdf.menu.ConvertSelection			"Convert Selection to Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection			"Append Selection to Existing PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF			"Convert Web Page to Adobe PDF...">
<!ENTITY web2pdf.menu.Add_To_Existing 			"Add Web Page to Existing PDF...">
<!ENTITY web2pdf.menu.Print_Web_Page			"Print Web Page...">
<!ENTITY web2pdf.menu.Convert_and_Email			"Convert Web Page and Email...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat		"View Adobe PDF Result">
<!ENTITY web2pdf.menu.Prefrences				"Preferences...">
<!ENTITY web2pdf.menu.ToolTipText			"Convert current web page to an Adobe PDF file">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Close">
PK
�rI���RR&�chrome/locale/ar_AE/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X`�/X`�/Xweb2pdf.SaveTitle=Convert Web Page to Adobe PDF
web2pdf.OpenTitle=Add Web Page to Existing PDF
web2pdf.UntitledFileName=untitled
web2pdf.Status_Waiting=(Waiting for Conversion)
web2pdf.Status_Downloading=(Downloading)
web2pdf.Status_Converting=(Converting)
web2pdf.Status_Error=(Unknown Error Occurred!)
web2pdf.Status_Success=(Done Success)
web2pdf.Unknown_Error=Acrobat had an error converting to PDF
web2pdf.File_Locked_Error=Cannot modify file, it may in use by other program.
web2pdf.Bad_Acrobat_Error=Could not access Acrobat\'s Web Capture facility. Acrobat may be busy or waiting for Input.
web2pdf.Status_Unknown_Error=Conversion stopped due to unknown error.
web2pdf.ReplaceWarning= already exists.\n Do you want to replace it?
web2pdf.NoWritePermissionOnSelectedFile=You do not have write permissions on the selected file.

PK
v�rI�chrome/locale/cs_CZ/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
`�/X`�/X`�/XPK
�rI	�#o���chrome/locale/cs_CZ/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label					"Adobe Acrobat – Vytvořit PDF">
<!ENTITY web2pdf.AppName				"Adobe Acrobat – Vytvořit PDF">
<!ENTITY web2pdf.ConvertButtonText			"Převést">
<!ENTITY web2pdf.prefstree.label			"web2pdf">
<!ENTITY web2pdf.status_dlg.title			"Postup převodu do PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Převést cíl vazby do Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Připojit cíl vazby k existujícímu PDF">
<!ENTITY web2pdf.menu.ConvertSelection		"Převést výběr do Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection		"Připojit výběr k existujícímu PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF		"Převést webovou stránku do Adobe PDF...">
<!ENTITY web2pdf.menu.Add_To_Existing 		"Přidat webovou stránku do existujícího PDF...">
<!ENTITY web2pdf.menu.Print_Web_Page		"Tisknout webovou stránku...">
<!ENTITY web2pdf.menu.Convert_and_Email		"Převést webovou stránku a poslat e-mailem...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat	"Zobrazit výsledek Adobe PDF">
<!ENTITY web2pdf.menu.Prefrences			"Předvolby...">
<!ENTITY web2pdf.menu.ToolTipText		"Převést současnou webovou stránku na soubor Adobe PDF">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Zavřít">
PK
�rI͐���&�chrome/locale/cs_CZ/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X`�/X`�/Xweb2pdf.SaveTitle=Převést webovou stránku do Adobe PDF
web2pdf.OpenTitle=Přidat webovou stránku do existujícího PDF
web2pdf.UntitledFileName=bez názvu
web2pdf.Status_Waiting=(čekání na převod)
web2pdf.Status_Downloading=(Stahuje se)
web2pdf.Status_Converting=(Probíhá převod)
web2pdf.Status_Error=(Došlo k neznámé chybě!)
web2pdf.Status_Success=(Úspěšně dokončeno)
web2pdf.Unknown_Error=V Acrobatu se vyskytla chyba při převodu do PDF
web2pdf.File_Locked_Error=Soubor nelze změnit, může být právě používán jiným programem.
web2pdf.Bad_Acrobat_Error=Nelze získat přístup k modulu aplikace Acrobat\ pro převod z webu. Aplikace Acrobat může být zaneprázdněna nebo čeká na zadání.
web2pdf.Status_Unknown_Error=Převod se zastavil z důvodu neznámé chyby.
web2pdf.ReplaceWarning= již existuje.\n Chcete jej opravdu nahradit?
web2pdf.NoWritePermissionOnSelectedFile=Nemáte oprávnění k zápisu do vybraného souboru.

PK
v�rI�chrome/locale/da_DK/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
`�/X`�/X`�/XPK
�rIw��D���chrome/locale/da_DK/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label						"Adobe Acrobat - Opret PDF">
<!ENTITY web2pdf.AppName					"Adobe Acrobat - Opret PDF">
<!ENTITY web2pdf.ConvertButtonText				"Konverter">
<!ENTITY web2pdf.prefstree.label				"web2pdf">
<!ENTITY web2pdf.status_dlg.title				"Status for konvertering til PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Konverter linkdestinationen til en Adobe PDF-fil">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Føj linkdestinationen til en eksisterende PDF-fil">
<!ENTITY web2pdf.menu.ConvertSelection			"Konverter markering til Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection			"Føj det markerede til en eksisterende PDF-fil">
<!ENTITY web2pdf.menu.Convert_To_PDF			"Konverter webside til Adobe PDF...">
<!ENTITY web2pdf.menu.Add_To_Existing 			"Føj webside til eksisterende PDF...">
<!ENTITY web2pdf.menu.Print_Web_Page			"Udskriv webside...">
<!ENTITY web2pdf.menu.Convert_and_Email			"Konverter webside og e-mail...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat		"Vis Adobe PDF-resultat">
<!ENTITY web2pdf.menu.Prefrences				"Indstillinger...">
<!ENTITY web2pdf.menu.ToolTipText			"Konverter den aktuelle webside til en Adobe PDF-fil">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Luk">
PK
�rI����&�chrome/locale/da_DK/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X`�/X`�/Xweb2pdf.SaveTitle=Konverter webside til Adobe PDF
web2pdf.OpenTitle=Føj webside til eksisterende PDF
web2pdf.UntitledFileName=unavngivet
web2pdf.Status_Waiting=(Venter på konvertering)
web2pdf.Status_Downloading=(Overfører)
web2pdf.Status_Converting=(Konverterer)
web2pdf.Status_Error=(Der opstod en ukendt fejl!)
web2pdf.Status_Success=(Udført korrekt)
web2pdf.Unknown_Error=Der opstod en fejl i Acrobat under konverteringen til PDF
web2pdf.File_Locked_Error=Filen kan ikke redigeres. Den bruges muligvis af et andet program.
web2pdf.Bad_Acrobat_Error=Der var ikke adgang til Acrobats Web Capture-funktion. Acrobat kan være optaget eller venter på input.
web2pdf.Status_Unknown_Error=Konverteringen standsede på grund af en ukendt fejl.
web2pdf.ReplaceWarning= findes allerede.\n Skal filen overskrives?
web2pdf.NoWritePermissionOnSelectedFile=Du har ikke skrivetilladelser til den valgte fil.

PK
v�rI�chrome/locale/de_DE/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
`�/X`�/X`�/XPK
�rI:W����chrome/locale/de_DE/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label						"Adobe Acrobat - PDF erstellen">
<!ENTITY web2pdf.AppName					"Adobe Acrobat - PDF erstellen">
<!ENTITY web2pdf.ConvertButtonText				"Konvertieren">
<!ENTITY web2pdf.prefstree.label				"web2pdf">
<!ENTITY web2pdf.status_dlg.title				"Status der PDF-Konvertierung">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Linkziel in Adobe PDF konvertieren">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Linkziel an vorhandene PDF-Datei anhängen">
<!ENTITY web2pdf.menu.ConvertSelection			"Auswahl in Adobe PDF-Datei konvertieren">
<!ENTITY web2pdf.menu.AppendSelection			"Auswahl an vorhandene PDF-Datei anfügen">
<!ENTITY web2pdf.menu.Convert_To_PDF			"Webseite in Adobe PDF konvertieren...">
<!ENTITY web2pdf.menu.Add_To_Existing 			"Webseite vorhandener PDF-Datei hinzufügen...">
<!ENTITY web2pdf.menu.Print_Web_Page			"Webseite drucken...">
<!ENTITY web2pdf.menu.Convert_and_Email			"Webseite konvertieren und per E-Mail senden...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat		"Adobe PDF-Ergebnis anzeigen">
<!ENTITY web2pdf.menu.Prefrences				"Voreinstellungen...">
<!ENTITY web2pdf.menu.ToolTipText			"Aktuelle Webseite in Adobe PDF-Datei konvertieren">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Schließen">
PK
�rI'!

&�chrome/locale/de_DE/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X`�/X`�/Xweb2pdf.SaveTitle=Webseite in Adobe PDF konvertieren
web2pdf.OpenTitle=Webseite vorhandener PDF-Datei hinzufügen
web2pdf.UntitledFileName=Unbenannt
web2pdf.Status_Waiting=(Warten auf Konvertierung)
web2pdf.Status_Downloading=(Download)
web2pdf.Status_Converting=(Konvertierung)
web2pdf.Status_Error=(Ein unbekannter Fehler ist aufgetreten.)
web2pdf.Status_Success=(Erfolgreich abgeschlossen)
web2pdf.Unknown_Error=Es ist ein Fehler bei der PDF-Konvertierung in Acrobat aufgetreten.
web2pdf.File_Locked_Error=Datei kann nicht geändert werden. Eventuell wird die Datei derzeit von einem anderen Programm verwendet.
web2pdf.Bad_Acrobat_Error=Zugriff auf die Web Capture-Funktion von Acrobat nicht möglich. Acrobat ist ausgelastet oder wartet auf eine Eingabe.
web2pdf.Status_Unknown_Error=Die Konvertierung wurde aufgrund eines unbekannten Fehlers abgebrochen.
web2pdf.ReplaceWarning= existiert bereits.\n Ersetzen?
web2pdf.NoWritePermissionOnSelectedFile=Sie sind nicht zum Schreiben in die ausgewählte Datei berechtigt.
PK
v�rI�chrome/locale/el_GR/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
`�/X`�/X`�/XPK
�rI��x���chrome/locale/el_GR/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label						"Adobe Acrobat - Create PDF">
<!ENTITY web2pdf.AppName					"Adobe Acrobat - Create PDF">
<!ENTITY web2pdf.ConvertButtonText				"Convert">
<!ENTITY web2pdf.prefstree.label				"web2pdf">
<!ENTITY web2pdf.status_dlg.title				"Conversion to PDF Progress">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Convert Link Target to Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Append Link Target to Existing PDF">
<!ENTITY web2pdf.menu.ConvertSelection			"Convert Selection to Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection			"Append Selection to Existing PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF			"Convert Web Page to Adobe PDF...">
<!ENTITY web2pdf.menu.Add_To_Existing 			"Add Web Page to Existing PDF...">
<!ENTITY web2pdf.menu.Print_Web_Page			"Print Web Page...">
<!ENTITY web2pdf.menu.Convert_and_Email			"Convert Web Page and Email...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat		"View Adobe PDF Result">
<!ENTITY web2pdf.menu.Prefrences				"Preferences...">
<!ENTITY web2pdf.menu.ToolTipText			"Convert current web page to an Adobe PDF file">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Close">
PK
�rI���RR&�chrome/locale/el_GR/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X`�/X`�/Xweb2pdf.SaveTitle=Convert Web Page to Adobe PDF
web2pdf.OpenTitle=Add Web Page to Existing PDF
web2pdf.UntitledFileName=untitled
web2pdf.Status_Waiting=(Waiting for Conversion)
web2pdf.Status_Downloading=(Downloading)
web2pdf.Status_Converting=(Converting)
web2pdf.Status_Error=(Unknown Error Occurred!)
web2pdf.Status_Success=(Done Success)
web2pdf.Unknown_Error=Acrobat had an error converting to PDF
web2pdf.File_Locked_Error=Cannot modify file, it may in use by other program.
web2pdf.Bad_Acrobat_Error=Could not access Acrobat\'s Web Capture facility. Acrobat may be busy or waiting for Input.
web2pdf.Status_Unknown_Error=Conversion stopped due to unknown error.
web2pdf.ReplaceWarning= already exists.\n Do you want to replace it?
web2pdf.NoWritePermissionOnSelectedFile=You do not have write permissions on the selected file.

PK
v�rI�chrome/locale/en-US/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
`�/X`�/X`�/XPK
�rI�chrome/locale/en_US/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
��/X`�/X`�/XPK
��rI��x���chrome/locale/en_US/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X<!ENTITY web2pdf.label						"Adobe Acrobat - Create PDF">
<!ENTITY web2pdf.AppName					"Adobe Acrobat - Create PDF">
<!ENTITY web2pdf.ConvertButtonText				"Convert">
<!ENTITY web2pdf.prefstree.label				"web2pdf">
<!ENTITY web2pdf.status_dlg.title				"Conversion to PDF Progress">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Convert Link Target to Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Append Link Target to Existing PDF">
<!ENTITY web2pdf.menu.ConvertSelection			"Convert Selection to Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection			"Append Selection to Existing PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF			"Convert Web Page to Adobe PDF...">
<!ENTITY web2pdf.menu.Add_To_Existing 			"Add Web Page to Existing PDF...">
<!ENTITY web2pdf.menu.Print_Web_Page			"Print Web Page...">
<!ENTITY web2pdf.menu.Convert_and_Email			"Convert Web Page and Email...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat		"View Adobe PDF Result">
<!ENTITY web2pdf.menu.Prefrences				"Preferences...">
<!ENTITY web2pdf.menu.ToolTipText			"Convert current web page to an Adobe PDF file">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Close">
PK
��rI_'�UU&�chrome/locale/en_US/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/Xweb2pdf.SaveTitle=Convert Web Page to Adobe PDF
web2pdf.OpenTitle=Add Web Page to Existing PDF
web2pdf.UntitledFileName=untitled
web2pdf.Status_Waiting=(Waiting for Conversion)
web2pdf.Status_Downloading=(Downloading)
web2pdf.Status_Converting=(Converting)
web2pdf.Status_Error=(Unknown Error Occurred!)
web2pdf.Status_Success=(Done Success)
web2pdf.Unknown_Error=Acrobat had an error converting to PDF
web2pdf.File_Locked_Error=Cannot modify file, it may be in use by other program.
web2pdf.Bad_Acrobat_Error=Could not access Acrobat\'s Web Capture facility. Acrobat may be busy or waiting for Input.
web2pdf.Status_Unknown_Error=Conversion stopped due to unknown error.
web2pdf.ReplaceWarning= already exists.\n Do you want to replace it?
web2pdf.NoWritePermissionOnSelectedFile=You do not have write permissions on the selected file.

PK
v�rI�chrome/locale/es_ES/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
`�/X`�/X`�/XPK
�rI��{/���chrome/locale/es_ES/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label						"Adobe Acrobat: Crear PDF">
<!ENTITY web2pdf.AppName					"Adobe Acrobat: Crear PDF">
<!ENTITY web2pdf.ConvertButtonText				"Convertir">
<!ENTITY web2pdf.prefstree.label				"web2pdf">
<!ENTITY web2pdf.status_dlg.title				"Progreso de la conversión a PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Convertir destino de vínculo a Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Anexar destino de vínculo a PDF existente">
<!ENTITY web2pdf.menu.ConvertSelection			"Convertir selección a Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection			"Anexar selección a PDF existente">
<!ENTITY web2pdf.menu.Convert_To_PDF			"Convertir página Web a Adobe PDF...">
<!ENTITY web2pdf.menu.Add_To_Existing 			"Agregar página Web a PDF existente...">
<!ENTITY web2pdf.menu.Print_Web_Page			"Imprimir página Web...">
<!ENTITY web2pdf.menu.Convert_and_Email			"Convertir página Web y enviar por correo electrónico...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat		"Ver resultado de Adobe PDF">
<!ENTITY web2pdf.menu.Prefrences				"Preferencias...">
<!ENTITY web2pdf.menu.ToolTipText			"Convertir página web actual en un archivo Adobe PDF">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Cerrar">
PK
�rI�����&�chrome/locale/es_ES/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X`�/X`�/Xweb2pdf.SaveTitle=Conversión de páginas Web a Adobe PDF
web2pdf.OpenTitle=Agregar página Web a PDF existente
web2pdf.UntitledFileName=sin título
web2pdf.Status_Waiting=(Esperando la conversión)
web2pdf.Status_Downloading=(Descargando)
web2pdf.Status_Converting=(Convirtiendo)
web2pdf.Status_Error=(Se ha producido un error desconocido.)
web2pdf.Status_Success=(Correcto)
web2pdf.Unknown_Error=Error en Acrobat al convertir archivos a PDF
web2pdf.File_Locked_Error=No se puede modificar el archivo, puede que esté abierto en otro programa.
web2pdf.Bad_Acrobat_Error=No se puede obtener acceso a la función Captura de Web de Acrobat. Es posible que Acrobat esté ocupado o esperando alguna respuesta.
web2pdf.Status_Unknown_Error=La operación se ha detenido a causa de un error desconocido.
web2pdf.ReplaceWarning= ya existe.\n ¿Desea reemplazarlo?
web2pdf.NoWritePermissionOnSelectedFile=No tiene permisos de escritura en el archivo seleccionado.

PK
w�rI�chrome/locale/fi_FI/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/X`�/XPK
�rI��"����chrome/locale/fi_FI/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label						"Adobe Acrobat - Luo PDF">
<!ENTITY web2pdf.AppName					"Adobe Acrobat - Luo PDF">
<!ENTITY web2pdf.ConvertButtonText				"Muunna">
<!ENTITY web2pdf.prefstree.label				"web2pdf">
<!ENTITY web2pdf.status_dlg.title				"PDF-muunnoksen tila">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Muunna linkin kohde Adobe PDF -muotoon">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Liitä linkin kohde aiemmin luotuun PDF-tiedostoon">
<!ENTITY web2pdf.menu.ConvertSelection			"Muunna valinta Adobe PDF -muotoon">
<!ENTITY web2pdf.menu.AppendSelection			"Lisää valinta olemassa olevaan PDF-tiedostoon">
<!ENTITY web2pdf.menu.Convert_To_PDF			"Muunna Web-sivu Adobe PDF:ksi...">
<!ENTITY web2pdf.menu.Add_To_Existing 			"Lisää Web-sivu olemassa olevaan PDF-tiedostoon...">
<!ENTITY web2pdf.menu.Print_Web_Page			"Tulosta Web-sivu...">
<!ENTITY web2pdf.menu.Convert_and_Email			"Muunna Web-sivu ja lähetä sähköpostina...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat		"Näytä Adobe PDF -tulos">
<!ENTITY web2pdf.menu.Prefrences				"Asetukset...">
<!ENTITY web2pdf.menu.ToolTipText			"Muunna nykyinen Web-sivu Adobe PDF -tiedostoksi">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Sulje">
PK
�rIa{���&�chrome/locale/fi_FI/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=Muunna Web-sivu Adobe PDF:ksi
web2pdf.OpenTitle=Lisää Web-sivu olemassa olevaan PDF-tiedostoon
web2pdf.UntitledFileName=nimeämätön
web2pdf.Status_Waiting=(odottaa muuntoa)
web2pdf.Status_Downloading=(Ladataan)
web2pdf.Status_Converting=(Muunnetaan)
web2pdf.Status_Error=(Tuntematon virhe!)
web2pdf.Status_Success=(Valmis virheittä)
web2pdf.Unknown_Error=Acrobat-virhe muunnettaessa PDF-muotoon
web2pdf.File_Locked_Error=Tiedostoa ei voi muuttaa. Toinen ohjelma saattaa käyttää sitä.
web2pdf.Bad_Acrobat_Error=Acrobatin Web Capture -toimintoa ei voitu käyttää. Acrobat voi olla varattu tai odottaa syöttöä.
web2pdf.Status_Unknown_Error=Muuntaminen pysähtynyt tuntemattoman virheen vuoksi.
web2pdf.ReplaceWarning= on jo olemassa.\n Haluatko korvata sen?
web2pdf.NoWritePermissionOnSelectedFile=Sinulla ei ole oikeutta kirjoittaa valittuun tiedostoon.

PK
w�rI�chrome/locale/fr_FR/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
�rIVѡLL�chrome/locale/fr_FR/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label						"Adobe Acrobat - Créer un fichier PDF">
<!ENTITY web2pdf.AppName					"Adobe Acrobat - Créer un fichier PDF">
<!ENTITY web2pdf.ConvertButtonText				"Convertir">
<!ENTITY web2pdf.prefstree.label				"web2pdf">
<!ENTITY web2pdf.status_dlg.title				"Progression de la conversion au format PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Convertir la cible du lien au format Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Ajouter la cible du lien à un fichier PDF existant">
<!ENTITY web2pdf.menu.ConvertSelection			"Convertir la sélection au format Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection			"Ajouter la sélection à un fichier PDF existant">
<!ENTITY web2pdf.menu.Convert_To_PDF			"Convertir la page Web au format Adobe PDF...">
<!ENTITY web2pdf.menu.Add_To_Existing 			"Ajouter la page Web à un fichier PDF existant...">
<!ENTITY web2pdf.menu.Print_Web_Page			"Imprimer la page Web...">
<!ENTITY web2pdf.menu.Convert_and_Email			"Convertir la page Web et envoyer par messagerie...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat		"Afficher le fichier Adobe PDF obtenu">
<!ENTITY web2pdf.menu.Prefrences				"Préférences...">
<!ENTITY web2pdf.menu.ToolTipText			"Convertir la page Web actuelle au format Adobe PDF">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Fermer">
PK
�rI���^11&�chrome/locale/fr_FR/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=Convertir la page Web au format Adobe PDF
web2pdf.OpenTitle=Ajouter la page Web à un fichier PDF existant
web2pdf.UntitledFileName=Sans titre
web2pdf.Status_Waiting=(Attente de la conversion)
web2pdf.Status_Downloading=(Téléchargement en cours)
web2pdf.Status_Converting=(Conversion en cours)
web2pdf.Status_Error=(Une erreur inconnue s\'est produite.)
web2pdf.Status_Success=(Opération réussie)
web2pdf.Unknown_Error=Acrobat a rencontré une erreur lors de la conversion au format PDF.
web2pdf.File_Locked_Error=Impossible de modifier le fichier, il est peut-être utilisé par un autre programme.
web2pdf.Bad_Acrobat_Error=Impossible d\'accéder à la fonction de capture Web d\'Acrobat. Acrobat est peut-être occupé ou en attente de données.
web2pdf.Status_Unknown_Error=La conversion s\'est arrêtée suite à une erreur inconnue.
web2pdf.ReplaceWarning= existe déjà.\n Voulez-vous le remplacer ?
web2pdf.NoWritePermissionOnSelectedFile=Vous ne disposez pas d\'aucune autorisation d\'écriture sur le fichier sélectionné.

PK
w�rI�chrome/locale/he_IL/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
�rI��x���chrome/locale/he_IL/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label						"Adobe Acrobat - Create PDF">
<!ENTITY web2pdf.AppName					"Adobe Acrobat - Create PDF">
<!ENTITY web2pdf.ConvertButtonText				"Convert">
<!ENTITY web2pdf.prefstree.label				"web2pdf">
<!ENTITY web2pdf.status_dlg.title				"Conversion to PDF Progress">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Convert Link Target to Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Append Link Target to Existing PDF">
<!ENTITY web2pdf.menu.ConvertSelection			"Convert Selection to Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection			"Append Selection to Existing PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF			"Convert Web Page to Adobe PDF...">
<!ENTITY web2pdf.menu.Add_To_Existing 			"Add Web Page to Existing PDF...">
<!ENTITY web2pdf.menu.Print_Web_Page			"Print Web Page...">
<!ENTITY web2pdf.menu.Convert_and_Email			"Convert Web Page and Email...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat		"View Adobe PDF Result">
<!ENTITY web2pdf.menu.Prefrences				"Preferences...">
<!ENTITY web2pdf.menu.ToolTipText			"Convert current web page to an Adobe PDF file">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Close">
PK
�rI���RR&�chrome/locale/he_IL/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=Convert Web Page to Adobe PDF
web2pdf.OpenTitle=Add Web Page to Existing PDF
web2pdf.UntitledFileName=untitled
web2pdf.Status_Waiting=(Waiting for Conversion)
web2pdf.Status_Downloading=(Downloading)
web2pdf.Status_Converting=(Converting)
web2pdf.Status_Error=(Unknown Error Occurred!)
web2pdf.Status_Success=(Done Success)
web2pdf.Unknown_Error=Acrobat had an error converting to PDF
web2pdf.File_Locked_Error=Cannot modify file, it may in use by other program.
web2pdf.Bad_Acrobat_Error=Could not access Acrobat\'s Web Capture facility. Acrobat may be busy or waiting for Input.
web2pdf.Status_Unknown_Error=Conversion stopped due to unknown error.
web2pdf.ReplaceWarning= already exists.\n Do you want to replace it?
web2pdf.NoWritePermissionOnSelectedFile=You do not have write permissions on the selected file.

PK
w�rI�chrome/locale/hr_HR/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
�rI�+ν���chrome/locale/hr_HR/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label					"Adobe Acrobat - stvaranje PDF-a">
<!ENTITY web2pdf.AppName				"Adobe Acrobat - stvaranje PDF-a">
<!ENTITY web2pdf.ConvertButtonText			"Pretvori">
<!ENTITY web2pdf.prefstree.label			"web2pdf">
<!ENTITY web2pdf.status_dlg.title			"Napredak pretvorbe u PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Pretvori odredište veze u Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Pridodaj odredište veze u postojeći PDF">
<!ENTITY web2pdf.menu.ConvertSelection		"Pretvori odabir u Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection		"Pridodaj odabir u postojeći PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF		"Pretvori web-stranicu u Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing 		"Dodavanje web-stranice u postojeći PDF...">
<!ENTITY web2pdf.menu.Print_Web_Page		"Ispis web-stranice...">
<!ENTITY web2pdf.menu.Convert_and_Email		"Konvertiranje web-stranice i poruke e-pošte...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat	"Prikaz Adobe PDF rezultata">
<!ENTITY web2pdf.menu.Prefrences			"Preference...">
<!ENTITY web2pdf.menu.ToolTipText		"Pretvorite trenutnu web-stranicu u Adobe PDF datoteku">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Zatvori">
PK
�rI���Y��&�chrome/locale/hr_HR/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=Pretvori web-stranicu u Adobe PDF
web2pdf.OpenTitle=Dodaj web-stranicu u postojeći PDF
web2pdf.UntitledFileName=bez naziva
web2pdf.Status_Waiting=(Čeka se pretvorba)
web2pdf.Status_Downloading=(Preuzimanje)
web2pdf.Status_Converting=(Pretvorba)
web2pdf.Status_Error=(Došlo je do nepoznate pogreške!)
web2pdf.Status_Success=(Uspješno dovršeno)
web2pdf.Unknown_Error=Pri pretvorbi u PDF došlo je do pogreške u Acrobatu
web2pdf.File_Locked_Error=Datoteka se ne može izmijeniti; možda ju koristi drugi program.
web2pdf.Bad_Acrobat_Error=Ne može se pristupiti značajki Web Capture u programu Acrobat. Acrobat je možda zauzet ili čeka na unos.
web2pdf.Status_Unknown_Error=Pretvorba je prekinuta zbog nepoznate pogreške.
web2pdf.ReplaceWarning= već postoji.\\nŽelite li zamijeniti?
web2pdf.NoWritePermissionOnSelectedFile=Za odabranu datoteku nemate dopuštenja za pisanje.

PK
w�rI�chrome/locale/hu_HU/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
�rIsp�x>>�chrome/locale/hu_HU/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label					"Adobe Acrobat - PDF létrehozása">
<!ENTITY web2pdf.AppName				"Adobe Acrobat - PDF létrehozása">
<!ENTITY web2pdf.ConvertButtonText			"Átalakítás">
<!ENTITY web2pdf.prefstree.label			"web2pdf">
<!ENTITY web2pdf.status_dlg.title			"PDF-konvertálás folyamatjelzője">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Hivatkozási cél konvertálása Adobe PDF formátumra">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Hivatkozási cél hozzáfűzése meglévő PDF fájlhoz">
<!ENTITY web2pdf.menu.ConvertSelection		"Kijelölés konvertálása Adobe PDF formátumra">
<!ENTITY web2pdf.menu.AppendSelection		"Kijelölés hozzáfűzése meglévő PDF fájlhoz">
<!ENTITY web2pdf.menu.Convert_To_PDF		"Weblap konvertálása Adobe PDF formátumúra...">
<!ENTITY web2pdf.menu.Add_To_Existing 		"Weboldal hozzáadása létező PDF fájlhoz...">
<!ENTITY web2pdf.menu.Print_Web_Page		"Weboldal nyomtatása...">
<!ENTITY web2pdf.menu.Convert_and_Email		"Weboldal és e-mail konvertálása...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat	"Adobe PDF-eredmény megtekintése">
<!ENTITY web2pdf.menu.Prefrences			"Beállítások...">
<!ENTITY web2pdf.menu.ToolTipText		"Aktuális weblap konvertálása Adobe PDF formátumúra">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Bezárás">
PK
�rIs�B���&�chrome/locale/hu_HU/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=Weblap konvertálása Adobe PDF formátumúra
web2pdf.OpenTitle=Weboldal elhelyezése meglévő PDF fájlban
web2pdf.UntitledFileName=névtelen
web2pdf.Status_Waiting=(Várakozás átalakításra)
web2pdf.Status_Downloading=(Letöltés)
web2pdf.Status_Converting=(Konvertálás)
web2pdf.Status_Error=(Ismeretlen hiba történt!)
web2pdf.Status_Success=(Sikeresen befejeződött)
web2pdf.Unknown_Error=Az Acrobat hibát talált a PDF formátumra konvertáláskor
web2pdf.File_Locked_Error=A fájl nem módosítható, esetleg egy másik program használja.
web2pdf.Bad_Acrobat_Error=Az Acrobat webrögzítés funkciója nem áll rendelkezésre. Az Acrobat esetleg elfoglalt, vagy bemenetre vár.
web2pdf.Status_Unknown_Error=A konvertálás ismeretlen hiba miatt leállt.
web2pdf.ReplaceWarning= már létezik.\n Kívánja lecserélni?
web2pdf.NoWritePermissionOnSelectedFile=Nincs írási jogosultsága a kijelölt fájlban.

PK
w�rI�chrome/locale/it_IT/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
�rI������chrome/locale/it_IT/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label						"Adobe Acrobat - Crea PDF">
<!ENTITY web2pdf.AppName					"Adobe Acrobat - Crea PDF">
<!ENTITY web2pdf.ConvertButtonText				"Converti">
<!ENTITY web2pdf.prefstree.label				"web2pdf">
<!ENTITY web2pdf.status_dlg.title				"Stato di avanzamento della conversione in PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Converti destinazione link in Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Aggiungi destinazione link a PDF esistente">
<!ENTITY web2pdf.menu.ConvertSelection			"Converti selezione in Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection			"Aggiungi selezione a PDF esistente">
<!ENTITY web2pdf.menu.Convert_To_PDF			"Converti pagina Web in Adobe PDF...">
<!ENTITY web2pdf.menu.Add_To_Existing 			"Aggiungi pagina Web a PDF esistente...">
<!ENTITY web2pdf.menu.Print_Web_Page			"Stampa pagina Web...">
<!ENTITY web2pdf.menu.Convert_and_Email			"Converti pagina Web e invia per e-mail...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat		"Visualizza il risultato in Adobe PDF">
<!ENTITY web2pdf.menu.Prefrences				"Preferenze...">
<!ENTITY web2pdf.menu.ToolTipText			"Converti la pagina Web corrente in un file Adobe PDF">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Chiudi">
PK
�rI�]m���&�chrome/locale/it_IT/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=Converti pagina Web in Adobe PDF
web2pdf.OpenTitle=Aggiungi pagina Web a PDF esistente
web2pdf.UntitledFileName=senza titolo
web2pdf.Status_Waiting=(In attesa della conversione)
web2pdf.Status_Downloading=(Scaricamento)
web2pdf.Status_Converting=(Conversione)
web2pdf.Status_Error=(Errore sconosciuto)
web2pdf.Status_Success=(Operazione completata correttamente)
web2pdf.Unknown_Error=Errore di Acrobat durante la conversione in PDF
web2pdf.File_Locked_Error=Impossibile modificare il file. È possibile che sia utilizzato da un altro programma.
web2pdf.Bad_Acrobat_Error=Impossibile accedere alla funzione Web Capture di Acrobat. È possibile che Acrobat sia occupato o in attesa di input.
web2pdf.Status_Unknown_Error=Conversione interrotta a causa di un errore sconosciuto.
web2pdf.ReplaceWarning= esiste già.\n Sostituirlo?
web2pdf.NoWritePermissionOnSelectedFile=Non si dispone delle autorizzazioni per eseguire la scrittura su questo file.

PK
w�rI�chrome/locale/ja_JP/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
�rI�7�D�chrome/locale/ja_JP/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label						"Adobe Acrobat - PDF の作成">
<!ENTITY web2pdf.AppName					"Adobe Acrobat - PDF の作成">
<!ENTITY web2pdf.ConvertButtonText				"変換">
<!ENTITY web2pdf.prefstree.label				"web2pdf">
<!ENTITY web2pdf.status_dlg.title				"PDF への変換の進行状況">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"リンクの参照先を Adobe PDF に変換">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"リンクの参照先を既存の PDF に追加">
<!ENTITY web2pdf.menu.ConvertSelection			"選択項目を Adobe PDF に変換">
<!ENTITY web2pdf.menu.AppendSelection			"選択項目を既存の PDF に追加">
<!ENTITY web2pdf.menu.Convert_To_PDF			"Web ページを Adobe PDF に変換...">
<!ENTITY web2pdf.menu.Add_To_Existing 			"既存の PDF に Web ページを追加...">
<!ENTITY web2pdf.menu.Print_Web_Page			"Web ページを印刷...">
<!ENTITY web2pdf.menu.Convert_and_Email			"Web ページを変換して電子メールで送信...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat		"結果の Adobe PDF を表示">
<!ENTITY web2pdf.menu.Prefrences				"環境設定...">
<!ENTITY web2pdf.menu.ToolTipText			"現在の Web ページを Adobe PDF ファイルに変換">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"閉じる">
PK
�rI�J%55&�chrome/locale/ja_JP/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=Web ページを Adobe PDF に変換
web2pdf.OpenTitle=既存の PDF に Web ページを追加
web2pdf.UntitledFileName=名称未設定
web2pdf.Status_Waiting=(変換待機中)
web2pdf.Status_Downloading=(ダウンロード中)
web2pdf.Status_Converting=(変換中)
web2pdf.Status_Error=(不明なエラーが発生しました。)
web2pdf.Status_Success=(正常終了)
web2pdf.Unknown_Error=PDF への変換中に Acrobat でエラーが発生しました
web2pdf.File_Locked_Error=ファイルを変更できません。他のプログラムで使用中の可能性があります。
web2pdf.Bad_Acrobat_Error=Acrobat の Web Capture 機能にアクセスできません。Acrobat がビジー状態か、入力待ちの可能性があります。
web2pdf.Status_Unknown_Error=不明なエラーが発生したため変換が停止しました。
web2pdf.ReplaceWarning=は既に存在します。\n置き換えますか?
web2pdf.NoWritePermissionOnSelectedFile=選択したファイルに対する書き込み権限がありません。

PK
w�rI�chrome/locale/ko_KR/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
�rI�����chrome/locale/ko_KR/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label						"Adobe Acrobat - PDF 작성">
<!ENTITY web2pdf.AppName					"Adobe Acrobat - PDF 작성">
<!ENTITY web2pdf.ConvertButtonText				"변환">
<!ENTITY web2pdf.prefstree.label				"web2pdf">
<!ENTITY web2pdf.status_dlg.title				"PDF 변환 진행 상태">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"링크 대상을 Adobe PDF로 변환">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"기존 PDF에 링크 대상 추가">
<!ENTITY web2pdf.menu.ConvertSelection			"선택 영역을 Adobe PDF로 변환">
<!ENTITY web2pdf.menu.AppendSelection			"기존 PDF에 선택 영역 추가">
<!ENTITY web2pdf.menu.Convert_To_PDF			"웹 페이지를 Adobe PDF 파일로 변환...">
<!ENTITY web2pdf.menu.Add_To_Existing 			"웹 페이지를 기존 PDF에 추가...">
<!ENTITY web2pdf.menu.Print_Web_Page			"웹 페이지 인쇄...">
<!ENTITY web2pdf.menu.Convert_and_Email			"웹 페이지를 변환하여 전자 메일로 보내기...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat		"Adobe PDF 결과 보기">
<!ENTITY web2pdf.menu.Prefrences				"기본 설정...">
<!ENTITY web2pdf.menu.ToolTipText			"현재 웹 페이지를 Adobe PDF 파일로 변환">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"닫기">
PK
�rIo4;�33&�chrome/locale/ko_KR/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=웹 페이지를 Adobe PDF 파일로 변환
web2pdf.OpenTitle=웹 페이지를 기존 PDF에 추가
web2pdf.UntitledFileName=제목 없음
web2pdf.Status_Waiting=(변환을 기다리는 중)
web2pdf.Status_Downloading=(다운로드 중)
web2pdf.Status_Converting=(변환 중)
web2pdf.Status_Error=(알 수 없는 오류가 발생했습니다.)
web2pdf.Status_Success=(성공적으로 완료되었습니다.)
web2pdf.Unknown_Error=Acrobat에서 PDF로 변환하는 동안 오류가 발생했습니다.
web2pdf.File_Locked_Error=파일을 수정할 수 없습니다. 다른 프로그램에서 사용 중일 수도 있습니다.
web2pdf.Bad_Acrobat_Error=Acrobat의 웹 캡처 기능을 사용할 수 없습니다. Acrobat을 사용 중이거나 입력 대기 중입니다.
web2pdf.Status_Unknown_Error=알 수 없는 오류로 인해 변환이 중지되었습니다.
web2pdf.ReplaceWarning=이(가) 이미 있습니다.\n 바꾸시겠습니까?
web2pdf.NoWritePermissionOnSelectedFile=선택한 파일에 대한 쓰기 권한이 없습니다.

PK
w�rI�chrome/locale/nb_NO/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
�rI���O���chrome/locale/nb_NO/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label						"Adobe Acrobat - Opprett PDF">
<!ENTITY web2pdf.AppName					"Adobe Acrobat - Opprett PDF">
<!ENTITY web2pdf.ConvertButtonText				"Konverter">
<!ENTITY web2pdf.prefstree.label				"web2pdf">
<!ENTITY web2pdf.status_dlg.title				"Fremdrift for konvertering til PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Konverter koblingsmål til en Adobe PDF-fil">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Tilføy koblingsmål til en eksisterende PDF-fil">
<!ENTITY web2pdf.menu.ConvertSelection			"Konverter utvalg til Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection			"Tilføy utvalg til eksisterende PDF-fil">
<!ENTITY web2pdf.menu.Convert_To_PDF			"Konverter webområde til Adobe PDF ...">
<!ENTITY web2pdf.menu.Add_To_Existing 			"Legg til webområde i eksisterende PDF-fil ...">
<!ENTITY web2pdf.menu.Print_Web_Page			"Skriv ut webside ...">
<!ENTITY web2pdf.menu.Convert_and_Email			"Konverter webområde og e-post ...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat		"Vis Adobe PDF-resultater">
<!ENTITY web2pdf.menu.Prefrences				"Innstillinger ...">
<!ENTITY web2pdf.menu.ToolTipText			"Konverter gjeldende webområde til en Adobe PDF-fil">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Lukk">
PK
�rI���Ԑ�&�chrome/locale/nb_NO/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=Konverter webområde til Adobe PDF
web2pdf.OpenTitle=Legg til webområde i eksisterende PDF-fil
web2pdf.UntitledFileName=uten tittel
web2pdf.Status_Waiting=(Venter på konvertering)
web2pdf.Status_Downloading=(Laster ned)
web2pdf.Status_Converting=(Konverterer)
web2pdf.Status_Error=(Det oppsto en ukjent feil!)
web2pdf.Status_Success=(Fullført uten feil)
web2pdf.Unknown_Error=Det oppsto en feil i Acrobat ved konvertering til PDF
web2pdf.File_Locked_Error=Kan ikke endre fil. Den kan være i bruk i et annet program.
web2pdf.Bad_Acrobat_Error=Får ikke tilgang til Acrobats Web Capture-funksjon. Acrobat er kanskje opptatt eller venter på inndata.
web2pdf.Status_Unknown_Error=Konvertering stanset pga. en ukjent feil.
web2pdf.ReplaceWarning= finnes allerede.\n Vil du erstatte den?
web2pdf.NoWritePermissionOnSelectedFile=Du har ikke skrivetillatelse for den valgte filen.

PK
w�rI�chrome/locale/nl_NL/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
�rIPU����chrome/locale/nl_NL/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label						"Adobe Acrobat - PDF maken">
<!ENTITY web2pdf.AppName					"Adobe Acrobat - PDF maken">
<!ENTITY web2pdf.ConvertButtonText				"Converteren">
<!ENTITY web2pdf.prefstree.label				"web2pdf">
<!ENTITY web2pdf.status_dlg.title				"Voortgang van conversie naar PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Doel van koppeling converteren naar Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Doel van koppeling toevoegen aan bestaande PDF">
<!ENTITY web2pdf.menu.ConvertSelection			"Selectie converteren naar Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection			"Selectie toevoegen aan bestaande PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF			"Webpagina converteren naar Adobe PDF...">
<!ENTITY web2pdf.menu.Add_To_Existing 			"Webpagina toevoegen aan bestaande PDF...">
<!ENTITY web2pdf.menu.Print_Web_Page			"Webpagina afdrukken...">
<!ENTITY web2pdf.menu.Convert_and_Email			"Webpagina converteren en verzenden per e-mail...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat		"Adobe PDF-resultaat tonen">
<!ENTITY web2pdf.menu.Prefrences				"Voorkeuren...">
<!ENTITY web2pdf.menu.ToolTipText			"Huidige webpagina converteren naar Adobe PDF-bestand">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Sluiten">
PK
�rI���˼�&�chrome/locale/nl_NL/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=Webpagina converteren naar Adobe PDF
web2pdf.OpenTitle=Webpagina toevoegen aan bestaande PDF
web2pdf.UntitledFileName=naamloos
web2pdf.Status_Waiting=(Wachten op conversie)
web2pdf.Status_Downloading=(Bezig met downloaden)
web2pdf.Status_Converting=(Bezig met converteren)
web2pdf.Status_Error=(Onbekende fout opgetreden!)
web2pdf.Status_Success=(Met succes voltooid)
web2pdf.Unknown_Error=Acrobat ondervond een fout bij de conversie naar PDF
web2pdf.File_Locked_Error=Kan bestand niet wijzigen. Mogelijk wordt het gebruikt door een ander programma.
web2pdf.Bad_Acrobat_Error=Geen toegang tot de functie Web Capture van Acrobat. Acrobat is mogelijk bezig of wacht op invoer.
web2pdf.Status_Unknown_Error=Conversie onderbroken vanwege onbekende fout.
web2pdf.ReplaceWarning= bestaat al.\n Wilt u het vervangen?
web2pdf.NoWritePermissionOnSelectedFile=U hebt geen toestemming om te schrijven naar het geselecteerde bestand.

PK
w�rI�chrome/locale/pl_PL/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
�rI���??�chrome/locale/pl_PL/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label					"Adobe Acrobat – Utwórz PDF">
<!ENTITY web2pdf.AppName				"Adobe Acrobat – Utwórz PDF">
<!ENTITY web2pdf.ConvertButtonText			"Konwertuj">
<!ENTITY web2pdf.prefstree.label			"web2pdf">
<!ENTITY web2pdf.status_dlg.title			"Proces konwersji do PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Konwertuj obiekt docelowy łącza na plik Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Dołącz obiekt docelowy łącza do istniejącego pliku PDF">
<!ENTITY web2pdf.menu.ConvertSelection		"Konwertuj zaznaczenie na plik Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection		"Dołącz zaznaczenie do istniejącego pliku PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF		"Konwertuj stronę internetową na plik Adobe PDF...">
<!ENTITY web2pdf.menu.Add_To_Existing 		"Dodaj stronę internetową do istniejącego pliku PDF...">
<!ENTITY web2pdf.menu.Print_Web_Page		"Drukuj stronę internetową...">
<!ENTITY web2pdf.menu.Convert_and_Email		"Konwertuj stronę internetową i email...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat	"Wyświetl plik wynikowy w formacie Adobe PDF">
<!ENTITY web2pdf.menu.Prefrences			"Preferencje...">
<!ENTITY web2pdf.menu.ToolTipText		"Konwertuj bieżącą stronę internetową na plik Adobe PDF">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Zamknij">
PK
�rI��s�((&�chrome/locale/pl_PL/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=Konwertuj stronę internetową do pliku Adobe PDF
web2pdf.OpenTitle=Dodaj stronę internetową do istniejącego pliku PDF
web2pdf.UntitledFileName=bez nazwy
web2pdf.Status_Waiting=(Oczekiwanie na konwersję)
web2pdf.Status_Downloading=(Pobieranie)
web2pdf.Status_Converting=(Konwertowanie)
web2pdf.Status_Error=(Wystąpił nieznany błąd!)
web2pdf.Status_Success=(Wykonano pomyślnie)
web2pdf.Unknown_Error=Podczas konwersji do pliku PDF wystąpił błąd programu Acrobat.
web2pdf.File_Locked_Error=Nie można zmodyfikować pliku, ponieważ może on być używany przez inny program.
web2pdf.Bad_Acrobat_Error=Nie można uzyskać dostępu do funkcji przechwytywania stron internetowych programu Acrobat. Program Acrobat może być zajęty lub oczekuje na dane wejściowe.
web2pdf.Status_Unknown_Error=Konwersja została zatrzymana z powodu wystąpienia nieznanego błędu.
web2pdf.ReplaceWarning= już istnieje.\n Czy chcesz go zastąpić?
web2pdf.NoWritePermissionOnSelectedFile=Nie masz uprawnień do zapisu w wybranym pliku.

PK
w�rI�chrome/locale/pt_BR/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
�rI�WU���chrome/locale/pt_BR/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label						"Adobe Acrobat - Criar PDF">
<!ENTITY web2pdf.AppName					"Adobe Acrobat - Criar PDF">
<!ENTITY web2pdf.ConvertButtonText				"Converter">
<!ENTITY web2pdf.prefstree.label				"web2pdf">
<!ENTITY web2pdf.status_dlg.title				"Progresso de conversão em PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Converter destino do link em Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Anexar destino do link a PDF existente">
<!ENTITY web2pdf.menu.ConvertSelection			"Converter seleção em Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection			"Anexar seleção a PDF existente">
<!ENTITY web2pdf.menu.Convert_To_PDF			"Converter página da Web em Adobe PDF...">
<!ENTITY web2pdf.menu.Add_To_Existing 			"Adicionar página da Web a PDF existente...">
<!ENTITY web2pdf.menu.Print_Web_Page			"Imprimir página da Web...">
<!ENTITY web2pdf.menu.Convert_and_Email			"Converter página da Web e e-mail...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat		"Visualizar resultado do Adobe PDF">
<!ENTITY web2pdf.menu.Prefrences				"Preferências...">
<!ENTITY web2pdf.menu.ToolTipText			"Converter página da Web atual em um arquivo Adobe PDF">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Fechar">
PK
�rI��k��&�chrome/locale/pt_BR/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=Converter página da Web em Adobe PDF
web2pdf.OpenTitle=Adicionar página da Web a PDF existente
web2pdf.UntitledFileName=sem título
web2pdf.Status_Waiting=(Aguardando conversão)
web2pdf.Status_Downloading=(Baixando)
web2pdf.Status_Converting=(Convertendo)
web2pdf.Status_Error=(Erro desconhecido!)
web2pdf.Status_Success=(Concluído com êxito)
web2pdf.Unknown_Error=O Acrobat teve um erro ao converter em PDF
web2pdf.File_Locked_Error=Não é possível modificar arquivo, ele pode estar em uso por outro programa.
web2pdf.Bad_Acrobat_Error=Não foi possível acessar o local de Captura da Web do Acrobat. O Acrobat pode estar ocupado ou aguardando entrada.
web2pdf.Status_Unknown_Error=Conversão interrompida devido a erro desconhecido.
web2pdf.ReplaceWarning= já existe.\n Deseja substituí-lo?
web2pdf.NoWritePermissionOnSelectedFile=Você não tem permissão de gravação no arquivo selecionado.

PK
w�rI�chrome/locale/ro_RO/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
�rIM������chrome/locale/ro_RO/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label					"Adobe Acrobat - Creare PDF">
<!ENTITY web2pdf.AppName				"Adobe Acrobat - Creare PDF">
<!ENTITY web2pdf.ConvertButtonText			"Conversie">
<!ENTITY web2pdf.prefstree.label			"web2pdf">
<!ENTITY web2pdf.status_dlg.title			"Stadiu conversie în PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Conversie destinaţie legătură în Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Adăugare destinaţie legătură la fişierul PDF existent">
<!ENTITY web2pdf.menu.ConvertSelection		"Conversie selecţie în Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection		"Adăugare selecţie la PDF existent">
<!ENTITY web2pdf.menu.Convert_To_PDF		"Conversie pagină Web în format Adobe PDF ...">
<!ENTITY web2pdf.menu.Add_To_Existing 		"Adăugare pagină Web la fişier PDF existent...">
<!ENTITY web2pdf.menu.Print_Web_Page		"Tipărire pagină Web...">
<!ENTITY web2pdf.menu.Convert_and_Email		"Conversie pagină Web şi e-mail...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat	"Vizualizare rezultat Adobe PDF">
<!ENTITY web2pdf.menu.Prefrences			"Preferinţe...">
<!ENTITY web2pdf.menu.ToolTipText		"Conversie pagină Web curentă în fişier Adobe PDF">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Închidere">
PK
�rIJT`��&�chrome/locale/ro_RO/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=Conversie pagină Web în format Adobe PDF
web2pdf.OpenTitle=Adăugare pagină Web la fişier PDF existent
web2pdf.UntitledFileName=fără titlu
web2pdf.Status_Waiting=(Se aşteaptă conversia)
web2pdf.Status_Downloading=(Se descarcă)
web2pdf.Status_Converting=(Se converteşte)
web2pdf.Status_Error=(A survenit o eroare necunoscută!)
web2pdf.Status_Success=(Finalizat cu succes)
web2pdf.Unknown_Error=Acrobat a generat o eroare în timpul conversiei în format PDF
web2pdf.File_Locked_Error=Fişierul nu poate fi modificat; este posibil să fie utilizat de alt program.
web2pdf.Bad_Acrobat_Error=Nu a putut fi accesată funcţia Web Capture din Acrobat. Este posibil ca Acrobat să fie ocupat sau să aştepte date de intrare.
web2pdf.Status_Unknown_Error=Conversia a fost oprită din cauza unei erori necunoscute.
web2pdf.ReplaceWarning= există deja.\n Înlocuiţi?
web2pdf.NoWritePermissionOnSelectedFile=Nu aveţi permisiuni de scriere pentru fişierul selectat.

PK
w�rI�chrome/locale/ru_RU/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
�rIe�����chrome/locale/ru_RU/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label					"Adobe Acrobat - Создание PDF">
<!ENTITY web2pdf.AppName				"Adobe Acrobat - Создание PDF">
<!ENTITY web2pdf.ConvertButtonText			"Преобразовать">
<!ENTITY web2pdf.prefstree.label			"web2pdf">
<!ENTITY web2pdf.status_dlg.title			"Ход выполнения преобразования в PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Преобразовать содержимое по ссылке в PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Добавить содержимое по ссылке в существующий файл PDF">
<!ENTITY web2pdf.menu.ConvertSelection		"Преобразовать выбранное в Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection		"Добавить выбранное к существующему PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF		"Преобразовать веб-страницу в Adobe PDF...">
<!ENTITY web2pdf.menu.Add_To_Existing 		"Добавить веб-страницу в существующий PDF...">
<!ENTITY web2pdf.menu.Print_Web_Page		"Печатать веб-страницу...">
<!ENTITY web2pdf.menu.Convert_and_Email		"Преобразовать веб-страницу и отправить по электронной почте...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat	"Просмотр конечного файла Adobe PDF">
<!ENTITY web2pdf.menu.Prefrences			"Установки...">
<!ENTITY web2pdf.menu.ToolTipText		"Преобразовать текущую веб-страницу в файл Adobe PDF">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Закрыть">
PK
�rI��޺��&�chrome/locale/ru_RU/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=Преобразование веб-страницы в Adobe PDF
web2pdf.OpenTitle=Добавить веб-страницу в существующий PDF
web2pdf.UntitledFileName=безымянный
web2pdf.Status_Waiting=(Ожидание преобразования)
web2pdf.Status_Downloading=(Загрузка)
web2pdf.Status_Converting=(Преобразование)
web2pdf.Status_Error=(Неизвестная ошибка!)
web2pdf.Status_Success=(Выполнено успешно)
web2pdf.Unknown_Error=Ошибка преобразования в PDF
web2pdf.File_Locked_Error=Не удается изменить файл, возможно, он используется другой программой.
web2pdf.Bad_Acrobat_Error=Не удалось получить доступ к Acrobat Web Capture. Возможно, программа Acrobat занята, или ожидается ввод.
web2pdf.Status_Unknown_Error=Преобразование остановлено из-за неизвестной ошибки.
web2pdf.ReplaceWarning= уже существует.\n Заменить его?
web2pdf.NoWritePermissionOnSelectedFile=У вас нет прав на запись в выбранный файл.

PK
w�rI�chrome/locale/sk_SK/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
�rIX��BB�chrome/locale/sk_SK/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label					"Adobe Acrobat – Vytvorenie súboru PDF">
<!ENTITY web2pdf.AppName				"Adobe Acrobat – Vytvorenie súboru PDF">
<!ENTITY web2pdf.ConvertButtonText			"Previesť">
<!ENTITY web2pdf.prefstree.label			"web2pdf">
<!ENTITY web2pdf.status_dlg.title			"Postup prevodu na súbor PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Previesť cieľ odkazu na súbor Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Pridať cieľ odkazu do existujúceho súboru PDF">
<!ENTITY web2pdf.menu.ConvertSelection		"Previesť výber na súbor Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection		"Pridať výber do existujúceho súboru PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF		"Previesť webovú stránku na súbor Adobe PDF...">
<!ENTITY web2pdf.menu.Add_To_Existing 		"Pridať webovú stránku do existujúceho súboru Adobe PDF...">
<!ENTITY web2pdf.menu.Print_Web_Page		"Tlačiť webovú stránku...">
<!ENTITY web2pdf.menu.Convert_and_Email		"Previesť webovú stránku a odoslať e-mailom...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat	"Zobraziť výsledný súbor Adobe PDF">
<!ENTITY web2pdf.menu.Prefrences			"Predvoľby...">
<!ENTITY web2pdf.menu.ToolTipText		"Previesť zobrazenú webovú stránku na súbor Adobe PDF">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Zatvoriť">
PK
�rI��ۿ��&�chrome/locale/sk_SK/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=Previesť webovú stránku na súbor Adobe PDF
web2pdf.OpenTitle=Pridať webovú stránku do existujúceho súboru Adobe PDF
web2pdf.UntitledFileName=bez názvu
web2pdf.Status_Waiting=(Čaká sa na prevod)
web2pdf.Status_Downloading=(Preberá sa)
web2pdf.Status_Converting=(Prevádza sa)
web2pdf.Status_Error=(Vyskytla sa neznáma chyba!)
web2pdf.Status_Success=(Úspešne dokončené)
web2pdf.Unknown_Error=V aplikácii Acrobat sa vyskytla chyba pri prevode na súbor PDF
web2pdf.File_Locked_Error=Súbor sa nedá zmeniť, používa sa pravdepodobne v inej aplikácii.
web2pdf.Bad_Acrobat_Error=Nedá sa získať prístup k funkcii Zachytenie webu aplikácie Acrobat. Aplikácia Acrobat môže byť zaneprázdnená alebo čaká na vstup.
web2pdf.Status_Unknown_Error=Prevod bol zastavený z dôvodu neznámej chyby.
web2pdf.ReplaceWarning= už existuje.\n Chcete ho nahradiť?
web2pdf.NoWritePermissionOnSelectedFile=Nemáte povolenia na zápis do vybratého súboru.

PK
w�rI�chrome/locale/sl_SI/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
�rI�Ţ���chrome/locale/sl_SI/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label					"Adobe Acrobat – Ustvari PDF">
<!ENTITY web2pdf.AppName				"Adobe Acrobat – Ustvari PDF">
<!ENTITY web2pdf.ConvertButtonText			"Pretvori">
<!ENTITY web2pdf.prefstree.label			"web2pdf">
<!ENTITY web2pdf.status_dlg.title			"Pretvorba v potek PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Cilj povezave pretvori v datoteko Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Cilj povezave dodaj v obstoječo datoteko PDF">
<!ENTITY web2pdf.menu.ConvertSelection		"Izbor pretvori v datoteko Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection		"Izbor dodaj v obstoječo datoteko PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF		"Spletno stran pretvori v Adobe PDF ...">
<!ENTITY web2pdf.menu.Add_To_Existing 		"Spletno stran dodaj v obstoječi PDF ...">
<!ENTITY web2pdf.menu.Print_Web_Page		"Natisni spletno stran ...">
<!ENTITY web2pdf.menu.Convert_and_Email		"Pretvori spletno stran in e-pošto ...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat	"Predogled ustvarjene datoteke Adobe PDF">
<!ENTITY web2pdf.menu.Prefrences			"Nastavitve ...">
<!ENTITY web2pdf.menu.ToolTipText		"Pretvori trenutno spletno stran v datoteko Adobe PDF">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Zapri">
PK
�rI�S����&�chrome/locale/sl_SI/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=Spletno stran pretvori v Adobe PDF
web2pdf.OpenTitle=Spletno stran dodaj v obstoječi PDF
web2pdf.UntitledFileName=neimenovano
web2pdf.Status_Waiting=(Čakanje na pretvorbo)
web2pdf.Status_Downloading=(Prenašanje)
web2pdf.Status_Converting=(Pretvarjanje)
web2pdf.Status_Error=(Prišlo je do neznane napake)
web2pdf.Status_Success=(Uspešno dokončano)
web2pdf.Unknown_Error=V Acrobatu je prišlo do napake pri pretvorbi v PDF
web2pdf.File_Locked_Error=Datoteke ni mogoče spremeniti, morda jo uporablja drug program.
web2pdf.Bad_Acrobat_Error=Dostop do Acrobatovega pripomočka za spletno zajemanje ni bil mogoč. Acrobat je morda zaseden ali čaka na vnos.
web2pdf.Status_Unknown_Error=Pretvorba je bila ustavljena zaradi neznane napake.
web2pdf.ReplaceWarning= že obstaja.\n Ali ga želite zamenjati?
web2pdf.NoWritePermissionOnSelectedFile=Nimate dovoljenja za pisanje v izbrano datoteko.

PK
w�rI�chrome/locale/sv_SE/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
�rI�!�y���chrome/locale/sv_SE/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label						"Adobe Acrobat - Skapa PDF">
<!ENTITY web2pdf.AppName					"Adobe Acrobat - Skapa PDF">
<!ENTITY web2pdf.ConvertButtonText				"Konvertera">
<!ENTITY web2pdf.prefstree.label				"web2pdf">
<!ENTITY web2pdf.status_dlg.title				"Konvertering till PDF-förlopp">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Konvertera länkmål till Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Bifoga länkmål till befintlig PDF">
<!ENTITY web2pdf.menu.ConvertSelection			"Konvertera markering till Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection			"Bifoga urval till befintlig PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF			"Konvertera webbsida till Adobe PDF...">
<!ENTITY web2pdf.menu.Add_To_Existing 			"Lägg till webbsida till befintlig PDF...">
<!ENTITY web2pdf.menu.Print_Web_Page			"Skriv ut webbsida...">
<!ENTITY web2pdf.menu.Convert_and_Email			"Konvertera webbsida och e-post...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat		"Visa Adobe PDF-resultat">
<!ENTITY web2pdf.menu.Prefrences				"Inställningar...">
<!ENTITY web2pdf.menu.ToolTipText			"Konvertera den aktuella webbsidan till en Adobe PDF-fil">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Stäng">
PK
�rI��Rr��&�chrome/locale/sv_SE/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=Konvertera webbsida till Adobe PDF
web2pdf.OpenTitle=Lägg till webbsida till befintlig PDF
web2pdf.UntitledFileName=namnlös
web2pdf.Status_Waiting=(Väntar på konvertering)
web2pdf.Status_Downloading=(Hämtar)
web2pdf.Status_Converting=(Konverterar)
web2pdf.Status_Error=(Ett okänt fel uppstod!)
web2pdf.Status_Success=(Klar - lyckades)
web2pdf.Unknown_Error=Det gick inte att konvertera till PDF
web2pdf.File_Locked_Error=Det går inte att ändra filen. Ett annat program kanske använder den.
web2pdf.Bad_Acrobat_Error=Det gick inte att få åtkomst till Acrobats funktion för Web Capture. Acrobat kan vara överbelastat eller väntar på inmatning.
web2pdf.Status_Unknown_Error=Konverteringen stoppades på grund av ett okänt fel.
web2pdf.ReplaceWarning= finns redan.\n Vill du skriva över den?
web2pdf.NoWritePermissionOnSelectedFile=Du har inte skrivbehörighet till den valda filen.

PK
w�rI�chrome/locale/tr_TR/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
�rI�N?���chrome/locale/tr_TR/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label					"Adobe Acrobat - PDF Oluştur">
<!ENTITY web2pdf.AppName				"Adobe Acrobat - PDF Oluştur">
<!ENTITY web2pdf.ConvertButtonText			"Dönüştür">
<!ENTITY web2pdf.prefstree.label			"web2pdf">
<!ENTITY web2pdf.status_dlg.title			"PDF'ye Dönüştürme İlerlemesi">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Bağ Hedefini Adobe PDF’ye Dönüştür">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Bağ Hedefini Varolan PDF’ye Ekle">
<!ENTITY web2pdf.menu.ConvertSelection		"Seçimi Adobe PDF’ye Dönüştür">
<!ENTITY web2pdf.menu.AppendSelection		"Seçimi Varolan PDF’ye Ekle">
<!ENTITY web2pdf.menu.Convert_To_PDF		"Web Sayfasını Adobe PDF'ye Dönüştür...">
<!ENTITY web2pdf.menu.Add_To_Existing 		"Web Sayfasını Varolan PDF’ye Ekle...">
<!ENTITY web2pdf.menu.Print_Web_Page		"Web Sayfasını Yazdır...">
<!ENTITY web2pdf.menu.Convert_and_Email		"Web Sayfasını Dönüştür ve E-postayla Gönder...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat	"Adobe PDF Sonucunu Görüntüle">
<!ENTITY web2pdf.menu.Prefrences			"Tercihler...">
<!ENTITY web2pdf.menu.ToolTipText		"Geçerli web sayfasını Adobe PDF dosyasına dönüştür">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Kapat">
PK
�rI�}��&�chrome/locale/tr_TR/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=Web Sayfasını Adobe PDF'ye Dönüştür
web2pdf.OpenTitle=Web Sayfasını Varolan PDF’ye Ekle
web2pdf.UntitledFileName=başlıksız
web2pdf.Status_Waiting=(Dönüştürme İçin Bekleniyor)
web2pdf.Status_Downloading=(İndiriliyor)
web2pdf.Status_Converting=(Dönüştürülüyor)
web2pdf.Status_Error=(Bilinmeyen Hata Oluştu!)
web2pdf.Status_Success=(Başarıyla Tamamlandı)
web2pdf.Unknown_Error=PDF'ye dönüştürme sırasında Acrobat'ta hata oluştu
web2pdf.File_Locked_Error=Dosya değiştirilemiyor, başka bir program tarafından kullanılıyor olabilir.
web2pdf.Bad_Acrobat_Error=Acrobat\'ın Web Yakalama özelliğine erişim sağlanamadı. Acrobat meşgul veya Giriş için bekliyor olabilir.
web2pdf.Status_Unknown_Error=Dönüştürme işlemi bilinmeyen bir hata nedeniyle durduruldu.
web2pdf.ReplaceWarning= zaten var.\nDeğiştirmek istiyor musunuz?
web2pdf.NoWritePermissionOnSelectedFile=Seçilen dosyada yazma izinlerine sahip değilsiniz.

PK
w�rI�chrome/locale/uk_UA/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
 �rI�
���chrome/locale/uk_UA/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label					"Adobe Acrobat – Create PDF">
<!ENTITY web2pdf.AppName				"Adobe Acrobat – Create PDF">
<!ENTITY web2pdf.ConvertButtonText			"Перетворити">
<!ENTITY web2pdf.prefstree.label			"web2pdf">
<!ENTITY web2pdf.status_dlg.title			"Індикатор стану перетворення на PDF-файл">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"Перетворити об'єкт призначення посилання на файл Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"Додати об'єкт призначення посилання до наявного PDF-файлу">
<!ENTITY web2pdf.menu.ConvertSelection		"Перетворити виділення на файл Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection		"Додати виділення до наявного PDF-файлу">
<!ENTITY web2pdf.menu.Convert_To_PDF		"Перетворити веб-сторінку на файл Adobe PDF...">
<!ENTITY web2pdf.menu.Add_To_Existing 		"Додати веб-сторінку до наявного PDF-файлу...">
<!ENTITY web2pdf.menu.Print_Web_Page		"Друкувати веб-сторінку...">
<!ENTITY web2pdf.menu.Convert_and_Email		"Перетворити веб-сторінку та надіслати ел. поштою...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat	"Перегляд результату у файлі Adobe PDF">
<!ENTITY web2pdf.menu.Prefrences			"Параметри...">
<!ENTITY web2pdf.menu.ToolTipText		"Перетворити поточну веб-сторінку на файл Adobe PDF">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"Закрити">
PK
 �rI0"��&�chrome/locale/uk_UA/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=Перетворити веб-сторінку на файл Adobe PDF
web2pdf.OpenTitle=Додати веб-сторінку до наявного PDF-файлу
web2pdf.UntitledFileName=без назви
web2pdf.Status_Waiting=(Очікування на перетворення)
web2pdf.Status_Downloading=(Завантаження)
web2pdf.Status_Converting=(Перетворення)
web2pdf.Status_Error=(Сталася невідома помилка!)
web2pdf.Status_Success=(Успішно виконано)
web2pdf.Unknown_Error=Під час перетворення файлу на PDF у програмі Acrobat сталася помилка
web2pdf.File_Locked_Error=Неможливо змінити файл; можливо, його використовує інша програма.
web2pdf.Bad_Acrobat_Error=Не вдалося отримати доступ до функції захоплення веб-сторінок програми Acrobat. Можливо, програма Acrobat зайнята або чекає на введення даних користувачем.
web2pdf.Status_Unknown_Error=Перетворення припинене через невідому помилку.
web2pdf.ReplaceWarning= вже існує.\n Замінити?
web2pdf.NoWritePermissionOnSelectedFile=У вас немає прав запису для вибраного файлу.

PK
w�rI�chrome/locale/zh_CN/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
 �rIR�]���chrome/locale/zh_CN/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label						"Adobe Acrobat - 创建 PDF">
<!ENTITY web2pdf.AppName					"Adobe Acrobat - 创建 PDF">
<!ENTITY web2pdf.ConvertButtonText				"转换">
<!ENTITY web2pdf.prefstree.label				"web2pdf">
<!ENTITY web2pdf.status_dlg.title				"PDF 转换进度">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"将链接目标转换为 Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"将链接目标追加到现有的 PDF">
<!ENTITY web2pdf.menu.ConvertSelection			"将选定的内容转换为 Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection			"将选定的内容追加到现有的 PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF			"将网页转换为 Adobe PDF...">
<!ENTITY web2pdf.menu.Add_To_Existing 			"将网页添加到现有的 PDF...">
<!ENTITY web2pdf.menu.Print_Web_Page			"打印网页...">
<!ENTITY web2pdf.menu.Convert_and_Email			"转换网页并通过电子邮件发送...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat		"查看 Adobe PDF 结果">
<!ENTITY web2pdf.menu.Prefrences				"首选项...">
<!ENTITY web2pdf.menu.ToolTipText			"将当前网页转换为 Adobe PDF 文件">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"关闭">
PK
 �rIJ;bb&�chrome/locale/zh_CN/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=将网页转换为 Adobe PDF
web2pdf.OpenTitle=将网页添加到现有的 PDF
web2pdf.UntitledFileName=未标题
web2pdf.Status_Waiting=(正在等待转换)
web2pdf.Status_Downloading=(正在下载)
web2pdf.Status_Converting=(正在转换)
web2pdf.Status_Error=(出现未知错误!)
web2pdf.Status_Success=(成功完成)
web2pdf.Unknown_Error=转换为 PDF 时 Acrobat 发生错误
web2pdf.File_Locked_Error=无法修改文件,它可能正在被其它程序使用。
web2pdf.Bad_Acrobat_Error=无法使用 Acrobat 的“网页捕捉”功能。Acrobat 可能正忙或正在等待输入。
web2pdf.Status_Unknown_Error=由于未知的错误,转换已停止。
web2pdf.ReplaceWarning=已经存在。\n 要替换它吗?
web2pdf.NoWritePermissionOnSelectedFile=您对于所选文件不具有写入许可。

PK
w�rI�chrome/locale/zh_TW/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
a�/Xa�/Xa�/XPK
!�rI �I[���chrome/locale/zh_TW/web2pdf.dtdSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/X��/X��/X<!ENTITY web2pdf.label						"Adobe Acrobat - 建立 PDF">
<!ENTITY web2pdf.AppName					"Adobe Acrobat - 建立 PDF">
<!ENTITY web2pdf.ConvertButtonText				"轉換">
<!ENTITY web2pdf.prefstree.label				"web2pdf">
<!ENTITY web2pdf.status_dlg.title				"PDF 轉換進度">
<!ENTITY web2pdf.menu.Convert_To_PDF_SelectedLink	"轉換連結目標為 Adobe PDF">
<!ENTITY web2pdf.menu.Add_To_Existing_SelectedLink	"附加連結目標至現有 PDF">
<!ENTITY web2pdf.menu.ConvertSelection			"轉換選定的內容為 Adobe PDF">
<!ENTITY web2pdf.menu.AppendSelection			"附加選定的內容至現有 PDF">
<!ENTITY web2pdf.menu.Convert_To_PDF			"轉換網頁為 Adobe PDF...">
<!ENTITY web2pdf.menu.Add_To_Existing 			"新增網頁至現有 PDF...">
<!ENTITY web2pdf.menu.Print_Web_Page			"列印網頁...">
<!ENTITY web2pdf.menu.Convert_and_Email			"轉換網頁並通過電子郵件傳送...">
<!ENTITY web2pdf.menu.View_Result_In_Acrobat		"檢視 Adobe PDF 結果">
<!ENTITY web2pdf.menu.Prefrences				"偏好設定...">
<!ENTITY web2pdf.menu.ToolTipText			"轉換目前網頁為 Adobe PDF 檔案">
<!ENTITY web2pdf.status_dlg.CloseButtonText		"關閉">
PK
!�rI��'33&�chrome/locale/zh_TW/web2pdf.propertiesSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
��/Xa�/Xa�/Xweb2pdf.SaveTitle=轉換網頁為 Adobe PDF
web2pdf.OpenTitle=新增網頁至現有 PDF
web2pdf.UntitledFileName=未命名
web2pdf.Status_Waiting=(正在等待轉換)
web2pdf.Status_Downloading=(正在下載)
web2pdf.Status_Converting=(正在轉換)
web2pdf.Status_Error=(發生不詳錯誤!)
web2pdf.Status_Success=(順利完成)
web2pdf.Unknown_Error=轉換為 PDF 時 Acrobat 出錯
web2pdf.File_Locked_Error=無法修改檔案,可能正為其它程式所使用。
web2pdf.Bad_Acrobat_Error=無法存取 Acrobat「網頁擷取」功能。Acrobat 可能正忙或等待輸入。
web2pdf.Status_Unknown_Error=已停止轉換,因為發生不詳錯誤。
web2pdf.ReplaceWarning= 已存在。\n 要取代它嗎?
web2pdf.NoWritePermissionOnSelectedFile=您對於選定的檔案沒有寫入權限。

PK
v�rI�chrome/skin/SD���Uqcd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�121001la`ie�`��(�V �b3�@��l���R��᱓��BF�>�+�h�J!;Av0I0�)d�a� itqUT
`�/X`�/X`�/XPK
��rI�YԜ��chrome/skin/AX_Append_Sm_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�atEXtSoftwareAdobe ImageReadyq�e<OiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (13.0 20120229.m.403 2012/02/29:21:00:00)  (Macintosh)" xmpMM:InstanceID="xmp.iid:9E57F4F3875111E1B57ECDBF5867E568" xmpMM:DocumentID="xmp.did:9E57F4F4875111E1B57ECDBF5867E568"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:9E57F4F1875111E1B57ECDBF5867E568" stRef:documentID="xmp.did:9E57F4F2875111E1B57ECDBF5867E568"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>
m��IDATx�|RILSQ��w���"�PPbA��6@4�0
��A7ㆍ$�.�+7��!J0Z�j�R�h
��Dk(ji��B����ERI�%'��s�=y�! b��nߎB�a�a���7a�bY���w��ɴ%���d��h�1���krξp��}vj�O�u�X>y�o�`�-M����vt:�E�c�q�j2����ʔKE�6��M���
@��<��A.��p�IP�X���1IB5(��	�P�I�<��E�c�q��#��2Jg�Ai���s��[%�~�xޗ�rB����&@��h��,�2��XQ�\��P��	�}}Rj�!̄0�����_��N��+|`�?�|r�f�B!���	l�!'�.�@�`hk�q���Q���L�{JUG�H6J��<)d'SP��r���AϠ�q�ʝ�s�|E�@�Y�t?첞�h�?�T���р�q�:,p���?�i=�-��$�E9����l4_�|uxнC�41ԩ� }��5ן�!4�s��E�g��d�M�(S�B*���>j�
a޷�oqse�w�8V�
�#��
�E?z�>6�du�v��-�=t���5�9��4)��sV������49bs���Z��A� �*�����[
TI�:G��=�䬥�Lw�n�����ڗ�%��pZ�$	��dp�~�ZQ��_|"�.�2DX@XD���`P�88y���IEND�B`�PK
��rI�)��'�chrome/skin/AX_ConvertWebEmail_Sm_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�atEXtSoftwareAdobe ImageReadyq�e<OiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (13.0 20120229.m.403 2012/02/29:21:00:00)  (Macintosh)" xmpMM:InstanceID="xmp.iid:9CE77773875111E1B57ECDBF5867E568" xmpMM:DocumentID="xmp.did:9CE77774875111E1B57ECDBF5867E568"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:9CE77771875111E1B57ECDBF5867E568" stRef:documentID="xmp.did:9CE77772875111E1B57ECDBF5867E568"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��H�
IDATx�lSYhQ=�d�iڤ�6���V\#�*QD��U\*T�*.�Ѫ���PJ�R�"�����VPk\۪�RCk]�&i2�Lf���[/��۹�7��c9��3t�PG���:>�x���`�gi!��+�j=�]�Ee���n�5?7S~��w��Fn=	���
^[!-����?���C*��)I��OsZ�}�Kp�a۲�i����SƼq"����%�nf�%2xԧr��r�?�J��>ؿvF�`���*q�f�������D;8�Ӝ�i��(����Ӹ��P_Ѫ-�¨(���s�^:9���&�L���6�aObu)Ƃ�b[FQT�<�L�4����x3r���+2Rrl�"�������}r(i���*£����E��AC�ڝ��#��M�Lk�"E�ʷ5AU���V=�
����t`~~ݍX>�j��)�����$j2`�]ÆQd�#����^9}H���S)���y�Y���M�1A�!��3���kH�yyOK^D�FW�E��t���>����=$��#�{��Z��
H�D�Q�nQ��-���N9��f��'9��@TD�%�$�n#���Ō{`Y����45�U.�e��Uv�}�����W�r0���͏!��DŚ݆@GG����z�r�Z��!�#�r767�-p�ǼGwN|���F /F{{�!��x�v�PSS���c�1�L��
ᰤ`����������M�W��y������=�����Ñu��`�VZ��IEND�B`�PK
��rI�:�UU$�chrome/skin/AX_PrintWebPage_Sm_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�atEXtSoftwareAdobe ImageReadyq�e<OiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (13.0 20120229.m.403 2012/02/29:21:00:00)  (Macintosh)" xmpMM:InstanceID="xmp.iid:9CE77777875111E1B57ECDBF5867E568" xmpMM:DocumentID="xmp.did:9CE77778875111E1B57ECDBF5867E568"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:9CE77775875111E1B57ECDBF5867E568" stRef:documentID="xmp.did:9CE77776875111E1B57ECDBF5867E568"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>h����IDATx�bd@�@lʀ�� ���1$[� 50� .����!�vd����&d'^~��A��.��@*���s�ϟ?ǫ[X\:QE��	Ȝĝ���>��r�љ�Gwmc8}x?^Lm�ݼ�N����J��W������ � = � /ȱ��1|���a��'���^p|������_Oo_&J���.+"?�����y��'v3|���f^~��0H�"��?���߾fh�,K\�pE�����o�V��&���YY�^=~����0�d�
����|F��3�f͚e�y�f�M�6�677�h����~~~���iii'�\;F�|5{����%�&CNNPJ��ہ1�
3�
^ N%L��y(��0���7�h�EIEND�B`�PK
��rIOg%/��'�chrome/skin/AX_ProgressSpin_Sm_01_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�asBIT|d�	pHYs��~�tEXtSoftwareAdobe Fireworks CS5.1�H�tEXtCreation Time05.12.2011w"�4IDAT8���M+Dq���x�˂�)��b��Ț�k�������6R�XP3%oo%���5
3��n�{�=�s���>����=Zj���v��Y���O�=����a���Q��1�
���Oq��g�81��h��9N�/a[�a��	l�����},Ws�>�XG@8���9����頁�~�dX��7
��� (���w���.��r���n�A��������J3�ǐt�P�Z /����E�������p�����Ѓ1\F� ��\�I�����rWL,���X�
�l��4~0�@|��K�IEND�B`�PK
��rI7�<��'�chrome/skin/AX_ProgressSpin_Sm_02_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�asBIT|d�	pHYs��~�tEXtSoftwareAdobe Fireworks CS5.1�H�tEXtCreation Time05.12.2011w"�"IDAT8��ҽ.Da�g	ֿM�O�� �XQ�QI�mH��҅�\�^�H\�MD!�b���8�����7�|gf����7/�ы�pGS�_�ڂ�-�Q����,d⋘�|]��(�wx���`�5��8�1���k\�	8�6vс�l7؈n�a�XIs���G���aPE5�5��.��@p�b�����=x��_:H'DZg=�q,���J�|V��~
ݸ��z+
���F���1�J8#�/��l4c�D�f���İoY!+��!2�ZU�����Ou,�d���IEND�B`�PK
��rI�3��'�chrome/skin/AX_ProgressSpin_Sm_03_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�asBIT|d�	pHYs��~�tEXtSoftwareAdobe Fireworks CS5.1�H�tEXtCreation Time05.12.2011w"�(IDAT8���K+�q�ߘqK.��R$�V�HQ�|Y�|k[{;�Ί�$�R,Ը��{f���<��t���<�s��.l��M�hF7Z��\�c���P�G0�"*8�(�p���\�
�P%ȇ��ݡ�
�AV�;N��5��$�fs��'�b7l
9���{t��b<��}�(���~!�Ao���EqG^��@A��!T�Џ��?a	{ak�na=)�<��6p,��
fp�&*�%�dDr��h����bV�>$�-����=�u�I�J�=��(x��p)9�?�Y2�|���54��q�BIEND�B`�PK
��rIk��?��'�chrome/skin/AX_ProgressSpin_Sm_04_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�asBIT|d�	pHYs��~�tEXtSoftwareAdobe Fireworks CS5.1�H�tEXtCreation Time05.12.2011w"�*IDAT8��һ.�A��~-� B"$��z�x�N�x
���*TD)
ɡQ����b�/'��N&{f�앵�,*G���չ�Pu���U�PDFr�	�@?:P�����s�\D/f2����B+���Oq>yKh�I�M/
��(`���*iH٠��X���[��b�L
�~�^�U���ih�fP��hlC�$�+�X�~�({�Q��X-9&+8D;1��r�N�uپO2�v��	�$C}:23�]�h@3�Ť��8.��Ȣ6�J���d�q�l����tg7����IEND�B`�PK
��rI�n!��'�chrome/skin/AX_ProgressSpin_Sm_05_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�asBIT|d�	pHYs��~�tEXtSoftwareAdobe Fireworks CS5.1�H�tEXtCreation Time05.12.2011w"�;IDAT8���;K\Q�o��AE�hPD#(�0�!�h!�Z	�������KmR�	)T�,��*�������2�6.8�>{�����R͘F�5Rq/ƑCcA��	#��T�
8�'�-�B	]��y�A>A&*��?�3l��.��q�n\c*\n�ݴc(����:��4)�}|��bA�z<o���`%�|$�K��fY<�)3��A���8ö�je
����(�`�%�.b?�2a�0�_X�̇�5�D]���]Hf=�Uɿ�9ܭ�+q�k�܏=l��8�@���E�����4<���lIEND�B`�PK
��rI^Ii���'�chrome/skin/AX_ProgressSpin_Sm_06_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�asBIT|d�	pHYs��~�tEXtSoftwareAdobe Fireworks CS5.1�H�tEXtCreation Time05.12.2011w"�(IDAT8���;/DQ��x�kB"A%$HD'шh�:Z��F��j�D4B%�L筸�z\3����}ιg���އ���*�Q���1��P��K���̜��7��Ѐ'܆�
�G�|wGS�\�������[<�c�Y7��
�0��ȟ�
i�ޢb9��5�k��g3�+,�H�� �^#*9H�(���elHtR�<�EIs����v0���y�}#�����4��c��=�`]2�M���d�%1�}�F���3��@��}���a�H2�_�Ѓ�����7�4B�J�IEND�B`�PK
��rI�YN���'�chrome/skin/AX_ProgressSpin_Sm_07_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�asBIT|d�	pHYs��~�tEXtSoftwareAdobe Fireworks CS5.1�H�tEXtCreation Time05.12.2011w"�1IDAT8����*�Q����_�$d���LD13t.�E�
\e�$�HD~G��o�>ΑU��}k����z��tTc�ezT��[��jTF�z�"xD�S�64�A5x�]��	q�-Ј�AA^#�
����'.1�dq�VSRs鍈�H��Ak!���QsE���R�Η!�K��g�����r
���J��טĒĠ�_�á�G����e�c3r
�E�	���b�� �lac�â��Y�c�x�\�7�Q���x�t�`g�(����;p��T}W�ś��.1��?���> ��"IEND�B`�PK
��rIzn����'�chrome/skin/AX_ProgressSpin_Sm_08_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�asBIT|d�	pHYs��~�tEXtSoftwareAdobe Fireworks CS5.1�H�tEXtCreation Time05.12.2011w"�0IDAT8���;/Da�g-�B!�	!Q�D!�:�F$�o���Wi�
Q
��\���$dn[�g�'�hL�e�33�{�o�oMD�5r��xc��f���QD[.���z������?Fn %(�_�R�y����!H?P��pȻ�l�3>�!��(�8M�'-,�uf�-q�⹀u߇���l��
��6Ο;(�%@X�,�I
�&%/q��!�a�q�q�O�T����K�)A#6�/ىq`�C;vp�d	ʡi(6񊩐s/$�]I[˯r	W����_c6u����>�D�	�]7IEND�B`�PK
��rI5�c!��'�chrome/skin/AX_ProgressSpin_Sm_09_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�asBIT|d�	pHYs��~�tEXtSoftwareAdobe Fireworks CS5.1�H�tEXtCreation Time05.12.2011w"�0IDAT8���K+�Q��p����2��\R���#e�2�7��e*ef`B)e���#�V��������yk��k�]�Z{�3jщ�_ިɜ���&���m	��x3�\�&̆��0�|�
]xA)�Z�b�(`��
�S*�CzтW�f�La#�TB�d��;�q~��Ѐ�ؿ�-������_FS��rOp_��Z|��EIc�+��1.i�M�qc8�U@1E�Ud�|�eZ �mc#8�B'�ԣT�RZ��0�݈OF9%�.�-��eG�C2 '��%c�o�c�ZR�lV>6:e��IEND�B`�PK
��rIJ���'�chrome/skin/AX_ProgressSpin_Sm_10_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�asBIT|d�	pHYs��~�tEXtSoftwareAdobe Fireworks CS5.1�H�tEXtCreation Time05.12.2011w"�3IDAT8���+�a��5F�0n�t�J��k#;�V�v����?G�VRJ�B\�LH]Y|��53�So�9�}��}�y���jpGS&��Z�}�@!��>#�� 3�v���Fq��P��X~Amͱ��Ww��3,�y!�%��i���ZV�4�g:�#��q[���-�WPi�J��6 A.~EA>�WTrx
�0$��W�c���_J�2&q�=L�"�|q^2'%\�	r��f1���Њ#��-�� ��J2��؎z{$3p�t�Zbv���L���ћ�V�r
�]����&;����lIEND�B`�PK
��rI�f����'�chrome/skin/AX_ProgressSpin_Sm_11_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�asBIT|d�	pHYs��~�tEXtSoftwareAdobe Fireworks CS5.1�H�tEXtCreation Time05.12.2011w"�-IDAT8���K+�a�����8)		6��
%%_AY�֊Oa���(��R�$ɥ�=�,����lLM���;�yf��҂%t��<�=�y��60�`MM��0��FЍ��{x���E%�?�D��h�:��5\���l$~HW3�����ԡ5�/)Cc(<�@�_�W�T`�	��m	�Ep.ס� �k�c"��7�C��7x�{
����ы�Dp.�S��E��*�1�.b8{P�|dc��(L ��(���G{<�Nbҫ�UX�|�~�l�ޔ�L����?����[IEND�B`�PK
��rIށ�{��'�chrome/skin/AX_ProgressSpin_Sm_12_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�asBIT|d�	pHYs��~�tEXtSoftwareAdobe Fireworks CS5.1�H�tEXtCreation Time05.12.2011w"�4IDAT8��ӿ.DQ�Kd�X�D$(�D�󯢣WP)x�7�A<���BhB6Y�bQܹ�6v�%7�̜�o�sg�Q�:���h�����ld�gkX��`���Ob;�F1�;la%�1*����O	2�Na=��}l��Wlb	+ȅ�
#X5?a��t6���_p]� U��7��������:]��

���b|��e�3�)J�0?]��!����f��ǒV�V$�D��dNr�Ҕ �=�b�8�σd��q����� �A!����c���m�NݧҪG9�Ϊ�7x
�FN�&���o|"*>|�ܖIEND�B`�PK
��rI�RY��(�chrome/skin/AX_State_Done_Error_Sm_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�atEXtSoftwareAdobe ImageReadyq�e<OiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (13.0 20120229.m.403 2012/02/29:21:00:00)  (Macintosh)" xmpMM:InstanceID="xmp.iid:9D9E35F0875111E1B57ECDBF5867E568" xmpMM:DocumentID="xmp.did:9D9E35F1875111E1B57ECDBF5867E568"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:9CE77779875111E1B57ECDBF5867E568" stRef:documentID="xmp.did:9CE7777A875111E1B57ECDBF5867E568"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>y9FIDATx�bd�&��7)A ��[��65,x4���`�`<��U(��@,jV��,��+��|��q�����2a�����$������?_oc��fc`d( �v+��߿�:��;F�K0��7����kb{A�g`���na���8çw~~�����zS��d^@��R�Wѕc���9��?_x_1*{*���@Z�U��x����/D���p1�|{���/�Lh��K�10���������`9V�~d�c���
F�a��
��
3�f��k�a`d�d���ucȭ��?5@b�P�U@ۣM]TX~�����/����0L���p��M390��ߟ\|�?~����w�տ�a^�uIob�����_������������ށ�`ٮh������@����` ���c��₋�\�
r��+��d����^Vq?[�Hb
��߾0���?�;��'�����!���A����?����bW�@́+o`�Ġ@�
`<��r��EIEND�B`�PK
��rI��i|*�chrome/skin/AX_State_Done_Success_Sm_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�atEXtSoftwareAdobe ImageReadyq�e<OiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (13.0 20120229.m.403 2012/02/29:21:00:00)  (Macintosh)" xmpMM:InstanceID="xmp.iid:9D9E35F4875111E1B57ECDBF5867E568" xmpMM:DocumentID="xmp.did:9D9E35F5875111E1B57ECDBF5867E568"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:9D9E35F2875111E1B57ECDBF5867E568" stRef:documentID="xmp.did:9D9E35F3875111E1B57ECDBF5867E568"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>����\IDATx�b���?%��ź!z@*�g\^�p	d9)����3���l�Hr�N0�ܵ{�|��q��������|I�!������]��������=n����@��LD�\��f�W"p��V�?~30ý|r��v1"��H9q?0��C�xD�M��(z��z���1�0X��������U��ecFH]9���P1N`��V�N�ð��Ïw�\����w��@�)@e?���U-��*�J)p��Pz�zJ(�R$m��}�e.�W7?�ڰj�[;����h�ow�R�O:?�������Ιh�+�x�=Z������y��e{��b�����	I˟a���f�c���?oٙYB|��s��u�����3�^<uٱ��&��ϰ(�$JH�@�T�d���"�����k����LLl��������W����aXӌl( ��=&�
r������7�������ۯ�n�dh������7�f�(�׭;#O����VsghʱcK#0 vU7�V�pI!����m���!(����[2�i|�d@��	�|� �IEND�B`�PK
��rI*��)�chrome/skin/AX_State_Downloading_Sm_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�atEXtSoftwareAdobe ImageReadyq�e<$iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Macintosh)" xmpMM:InstanceID="xmp.iid:286E3807A75B11E1A308B26CB3484F34" xmpMM:DocumentID="xmp.did:286E3808A75B11E1A308B26CB3484F34"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:286E3805A75B11E1A308B26CB3484F34" stRef:documentID="xmp.did:286E3806A75B11E1A308B26CB3484F34"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�PA�IDATxڔSKKQ�F{��
)	�a墟Ѧ�-�[�p.�qբ�&���~D�P"[	QQA����g�v�ν�w�Ι�P�P��$��)�~�6�(8�������8��1�[FX^>U���r3��6/�_�L���2\�1��
�0M��ÃL.`i$���tj_7u�S�{t�Y��>�ݪ�;qWΑ�(x;HՏ�*�Ҳ�r=���+'j�
!��/NW�����P&��t���l���n
7{�LEQ�)�tsj�/��y*x��]j�'#D�=pc���q��"��Z:N˙J3�#G��
�3�~��x����5��Hl�6^����,��}��BG�[�����1� pE�6�ʒ�@'iZ���`:���?Ʉ�IEND�B`�PK
��rI�Vu<<,�chrome/skin/AX_WebCap_ConvertButton_Sm_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�atEXtSoftwareAdobe ImageReadyq�e<$iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c061 64.140949, 2010/12/07-10:57:01        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS5.1 Macintosh" xmpMM:InstanceID="xmp.iid:D43FD498C3F011E1BDBAF9A6BCF0BD89" xmpMM:DocumentID="xmp.did:31682EAAC3F511E1BDBAF9A6BCF0BD89"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:D43FD496C3F011E1BDBAF9A6BCF0BD89" stRef:documentID="xmp.did:D43FD497C3F011E1BDBAF9A6BCF0BD89"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�G��IDATxڄ�]HSa�g;�t�.L�z#I�XJ6̏RB(��,��&�0�E؍��E]��i��٠�(�R(tYTT}\X:�)k9�Ƕs���,�i���sx��>��>�2X����05���+�2�S�\ ��i�;N�|�ipl�n��;�@^O����u�x�pMq{U������+�И�}M�r���B�N���\��v���l��M�`)e�U����GV�"ԙ+�d`�D"��8.'&F�)�wPnڒ�ᡁ6FSt�v�aW��X^e�j��d��5�ٳ��e�=��V@�$%VV��Z���tw��o������y$P;���*�V�������0��<��X�S/�o�g��#�3Sǁ;-8~�2�Q�p�|Mש�������B��L&�Y�u�\�N./JO�Z�F�>��T*
e��Z�f�X��#E�	6,+�%��c�Ӷ���{/&>�f���hx?h�����4�J�V�
�����77 ���3��%��Z��h,uP�YD}��
�$�Z�TS� \b�(�������v�����>r[O^�n m���i��ByZc&���5K�)���,�rb���ɑZ��]n6vO}��֫XSR�Ѱ��#[/\$g�&�5'���
@�FA >�����]n�	y�(�q��qm�����g�!�k��Яt3����	e6!���IEND�B`�PK
��rI���ss(�chrome/skin/AX_WebCap_Converted_Sm_D.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�atEXtSoftwareAdobe ImageReadyq�e<OiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (13.0 20120229.m.403 2012/02/29:21:00:00)  (Macintosh)" xmpMM:InstanceID="xmp.iid:9D9E35F8875111E1B57ECDBF5867E568" xmpMM:DocumentID="xmp.did:9D9E35F9875111E1B57ECDBF5867E568"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:9D9E35F6875111E1B57ECDBF5867E568" stRef:documentID="xmp.did:9D9E35F7875111E1B57ECDBF5867E568"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��z��IDATx�tSKLQ�3󠥝v�M[((��h5!%b?��~���l1&���Y
]L���(�i��B@��0�H?��Ό�
m36z���޻��y7�2�<T��ӂi����9�=ҹ$�EQ�T����S�ͮ����'̊�
�6wRo��^̈́v���|ۣ��)@�]Ί�7[j�u%,���a-.@���ϡ�d<��͈dh��S�h-t9���
`f����/X
'�H���I���BS�;��أ]�����dQ@���"ٓs�'u�^.�0+cB��F��J
c���h�e���#Ϳ3�`#��N�����i������^Ρ�8z��*I���V���0��a�`2�h��V�����z��n�!����z��<�Z����mI���<��8v�&{�w����1*���}}}���7*��3��L���6�3a��\��>�_4�,{	�#�ቕ�

J$��v�΄���D���H��v8000 ���{~�kXeǹ���XMsX��p�J��
��Pl4A$͊4���d���.�J4/�n(�E����)D�UJDH⡴Z;O���t:%#f�Lc���zZ]TO�kJ)T�%>�Wo~�R��!DFZ���d0��y�uo4�����e$�i&egA\Ĥ
�r�*�S�:����*}�\���`�4��6d�IEND�B`�PK
��rIi��p||(�chrome/skin/AX_WebCap_Converted_Sm_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR�atEXtSoftwareAdobe ImageReadyq�e<OiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (13.0 20120229.m.403 2012/02/29:21:00:00)  (Macintosh)" xmpMM:InstanceID="xmp.iid:9E57F4EB875111E1B57ECDBF5867E568" xmpMM:DocumentID="xmp.did:9E57F4EC875111E1B57ECDBF5867E568"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:9D9E35FA875111E1B57ECDBF5867E568" stRef:documentID="xmp.did:9E57F4EA875111E1B57ECDBF5867E568"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�I�m�IDATx�|�_HSa����[����N�ja��Ql)%S��|�4���|��@�|!(�|�a��zX�SC"��?Lm���L�/6��5����]u��8���wϹDI��,�,��fӵ�Z3;I.r�|��X��w*ݨM��b���w#3޷CSK��3�ˎ��w*"%_���k\�D�3D�C�&grO�$nk��+�f�yナө��%9#�=�^�8���W�e(�噦X�gї��Yz_[g7�(

j�$��Y�B�
�"�"urI�3�'~G�;�19ް��P����1��(9��aj�=9�!0����%�~�Y��A��o�ɋ��Amn��O��@ �������@N���~TUU5�S3�;��|58�/̹T-��,K�K�
�뎽)�v{����`�ZS�J���VM#1��#�<��g���J�S\YI~m�Gl�477fY��ɿ��g�?��>d���|���
%��-�n��#ٹ��`6�m�J��74�հ����D5M��4��+�B��DQ�D��x�H1��E��L!��]��W���s��6�9���f������t
#XÏ�j9��H�_��"m��*�0juVm�L�PD�h�)Ze�5�&\�Ph�sh�\�����m�C��L�C8�뤣�aLp�M��A�F��B�(���b��6JȤ}�"��$[IEND�B`�PK
��rIܗ���
�
�chrome/skin/AX_WebCap_Xl_N.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR  szz�tEXtSoftwareAdobe ImageReadyq�e<OiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (13.0 20120229.m.403 2012/02/29:21:00:00)  (Macintosh)" xmpMM:InstanceID="xmp.iid:13CF3C84875111E1B57ECDBF5867E568" xmpMM:DocumentID="xmp.did:9CE77770875111E1B57ECDBF5867E568"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:13CF3C82875111E1B57ECDBF5867E568" stRef:documentID="xmp.did:13CF3C83875111E1B57ECDBF5867E568"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>"���IDATxڬWkl��fwvg��.�1؛��k�h!qL �Jii���*
m"mI�B%��HA�UB��HM�&�
V
͋J�`�$5�c;��^�o�~���܉���,\����{��s�sϹ����OU���(�_7te�N�%��`$��PTj��V��?�MEQ�eظ�f7�[������"��l1�EA�
G��It��/��3��=�8�Urd�8���zw��������i�3��ILelu�pq0[��+xL�bRk����ӞQ�^����g�&u��'�A���µ���q��q��DRF�Q��$�3�DH@�|�Zתo�q~�t���lXP����U踰kG����|�I�,p0���E
ǩ�
!)+�J(�Ee��
�����F�����6ߛy�
����q���&���J�<�����cs���z�x7)I���D|2�@Ϥ��n�R����d���Ā���jk+����/��uZ�n�HQ*���F4l��K^5�h$�������@�9I�λ����Tb	dTW\�g����\r�V�5�3Ÿ�pO�~������50�X,�]��3u����cǎM���P4�6�9�� �"HFQ7���F�F�� y��R[��l�?��^�ٸ�}QX,�D"�χ��
�}���G*tĔ^�$�t�Ny,G�&�)`��֭0��,譍�(سr����1C�wlY�R�r�,���j�p���F�l��J�6!�<Mh���x��������F�0�P�p�[��B�R]]������UUU0�(���]�R�Aൔ)D�i��v/��8y��^�ĵk��"���"��j�4455!
����ׯolkk�91�^��?t�N�㓴HRR��)=��������l���E4EWW�����74��d�c�7޹əS�'��p�f�pk��p80����*#T.րy9l�	�|u¦tZ9������2XX�h�m8���
��#8�@�ҦBL(cc���eL?�bz�t�z�d�	�&�ᾁ<#������`2n@���ѾǪ|hHj�����[�;�	"r[����n�
��+I�}z�3\�K W�~��贋�y��,z�X`�?�2V�I��ټ$z���?�¦�0��"{V
�O�q:㯩?��9�s��r�-��:�W
�a1�P�.Lc]q��y�䫫���͛�l�Ɂ��X
���ʼn����FƇG���I����Z(����*�.h5��f��LɁ��
�j]�LiHu���h����t��`��-�\i�{�����#1Q�L�
��$�/�����$�A����n�����c�7~Q�1��-�*���E���|���?�6:���_��_��~�wރ���Ś];3��
Q˗+_ƌ��	�N�#��I��%S]=�K�Q&I����	F�C��p8�D"Ԍ�*h�2.�R{ӫ���,�0&���O#0<y.ǹ�����?�kw����r>��J;�=~�=�:�m�t�XA���٧H�ço��O��utc�=���q3�����W��ګ<�r����y�SM�W�`%05��I�N�� kX������i�o.a(]��mKQ�)h>�8��p���Ē;̑���S@����g/`���7�i�]y�P{��pfb!���ї}/d��^:�t�D%����٦�@X��M8�^l3�`�4d��IEND�B`�PK
��rIR_I(�;�;�chrome/skin/C_AdobeLogo.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR���>a�gAMA���OX2tEXtSoftwareAdobe ImageReadyq�e<;sIDATx��}	�dU��Œ���d-TQRlU��
(t���h��)��Nc���������~��Lۛ=߸L��
�vk���BɾS@�C-Y{.��{眻���EVHe��D�Ȉ/^�xg��z��^{��}��n���G�@}���qLG[ƞ�����
]x�7U�>ГL�V0�3�U�V��
�u�r��ݖ�Mѭ�LLP9@�&�5����_�B�R��8��B]@���|a���؝f��sV�U�\H�p�9�/ܱ�:#5��{mh�I�5he����;�eR�jռZ�֭_�ᯯ��{�mݺa��͛G83����վ���u�zp�������<2�(DD�i��	��3���c�J�
�,�!�m�y�c$]`&{"�%��``ܔ&��#�V�5���!����PȀ5=�چ{���k��f�����r����	L��C��G�:�w�8���g4�cG���K�P|�R�Z�s���K!�g�c����K+�FKl߱s�[���~���Ɂ��N��쉢�h��J7&�������T^�*�N��(�Tl�Nx�>��(���s���ɦ
��$@ʴ�������l�u�`6{��?�⊿�\OO�t'��	$'<C��ox��]sRЧ
���;�jժ��#�9���-W�9n����Tn$U)���Py��{J6��{"�*���cÏ�[Z-;v�.����d����F���&:��ϟ��.o
a�j�*�]�j���
�^�t�ɾ���>8����R��op>���I���
�0�������2�D���e���Ȇ���<'��c#�9hž=C�s�����/��׿~K�����v+
��Ys��	$��N����bm)'�*9�>JvOE�^���n�Ʀ�J�@D�{�y��Zt��%��z
"�y@�
)�E����;���E��_��!�se�W9۴g�^�6���l�W����7�q[	`>�L�f��?>z`<h�/�����J?��x<�$��}�0��/
��}p��#��~���>|��v|c��Dy��=���7��زk��t���e�����s�ݮg<���/����/i����20<4
s�̒]�k�޿w�W�QT4R ��~�S���v��Z�/v�~��C��k�/�<�Z�>R��_�k|n^����X����'�� ��1�B�!�Q����t�0�������}g�^���gR�סl`��m� t�\��j��/�ƙ`�@3�w� ���DG@�3������k:�#~8�?|�'��:����#R�fb��w0W��ռ+iлۀ��ʽV›��(�!x |��ᲄN��;�J�:�&��'?y&Xp�����;h_st�	�l^��sb{��c<��Ͻ�;B�\…��@N4��h#v��2�^�_�>-���ܞ���q��a���!�� R��N�d�#bb���5Lp�%�|w���R@�&x�����/�6�	�){׻@㏆׽.J"��f
���Ao�	D7��Aw���S�п�\~⦆��-AD�w�+:��'����-�@��[����~	��'3�|;i"����o��k���@�n�|���]�{�UW]u��4��W���h����Kz��^xS�%�I�X�̨x]��D9�d�/��g?��5�U�!�.*W]�k���@������޳��po���e�_3��^������]���`���9���ZM0:� ]S�x���Ձb��\��\n비s�'PW�	�my�����wT.�4���xL����.�M���H���t#���H|g���ׅ�I��.�
d�����VpX�����~��^~��g(sP)I�E��%߿v�칱�LP='(:��P͋c�	����}�
��n�7���',��}6�9s⛇
�K.���Ww��m��.�oj˖D���� >���I��&�()M�Xtn�2ˊe�]
���	*����%��k�%������_�"����r
�7��)�H��zc���~��P9�@�
j��׃",Q'��@p�����H_�]4y�a4ĕ.�,����d'5�b��&�������Ѕ�F30��{s��z*UB�ʡ�`�]���54�������w�0U_|�e��z�&By��TΘ�����&�2�\J2���L1y�hsP���__��Od:���@O�+�re����7$~~�})8M��8��J/�z``��k�T�C(��m�sэp���H�[�v�>��&�	�K�<�}�ϙ͉�=���-P�t�dr��g��~���q��B\��uV�Aڣ��Ĕ��Fɔ8L�ωo|����O���en �H��yH�<���׺	�i*c���\�B�'D��ħ�o�U�ƽ#�'�y�"��G�W�Q8��ߦĕi�P�
5�7��/`g�ȻߝH~��,}Dd��
P��8A��6�������@W&@b�����&��q���_���b<�3B�������v��v���W���{��C��Tu	�'.#�v��1F^�mfr|��[5�k�5#x�@L0�o{U�Ec3{�Kz16�����@ t˺��@�o�;���W�5�7��G�P�l�.�|]�����������H`����&�)���!LQ�g�ݲ������=>�W�����}㝚'“߾�6���|�1!G�ԙ�i��w��瀏y�^��q��ȿ����_t�T4e�r)���N$���}�����L�o
�.xb�����E�\O��+b"�'3�dz|t7N=5�//�С��@$�r;���!���sZ�K�����*�(d���[��?22�O�."�T�Z�j�̀E�7m�4�����xO%7^tg&�	��@�D�5��9���ΕD�g��E��^p��s���7��$�ST��q��m�.��.�����_?�Z�L�5�l�Z��-��fB��##�^��G�ҵzfΜe��i�`��~��D�Q�^��>��o}�W/���;p��}|��qi�iܢ�/�^2�
��E�eˠz�ʼn4�IB�����w���n�y��5D��':g��B�P0I��y��zL�`%���^�󶽵�2��p�����אÌ3`֬p�A�9���}���|���˪1ܷ�΂;����
g� 
�
�@��Tx�c�����M��<J7Ѓ�gf���0/w��߶7
,�CV%d�l����\���P�V�r����	
��O·���c��1ڂ͛�����臃^ �?��B_v��W�:22�_LН���}����v�H�bD��	淏��kF��EP�}�sQ$������K�^�y�B. ��C�������@�V7"��Y��7��ކ��6�]o�n#fn��ϭ��3�U�9��e�ˮ���L��jH�t[e����
�nQ?]O�.�ל9�=���}�Y:�t{_��1�wD�J���9:��,�9��?~�RA푷������^���9�c�	1]�PdZ�iLE}�r晧�C�9rѷ��퇑	8�ɻ1A�4��}}����%Q?^X�5@�H4@Y.>�x������k'I'�]��{.���������ѽ'>��v�ت�y0&,]_��R�JVAh��q�MǑV�DDb��`�-�QDi?�l�U��`˖��y�/���?���B&�7��͛��9S�*�x���G���,x]�r._��k���u3s��x���a�n^�y�'1����WOVP���ķ~� �	��X�b���R����J`Q��b%������#m\���w�~�[W��e�}���-�,����h�.>�v��pljq��#�^"��m.f���{�dCag	�/}��1Y!X�:4���Y�f���_�5���U�VL}@��*��|�|^��V���2[�f�xzn2��{��dt�I��s�]v��� �(�zn���7�h[����_Q�e0v��i�B��b��s�z�iΟ���*�)��c��܋)sg��;"ڈ��
��Z�@�����}�����>\ʘ?P�`M���;�q�g����~����eB��9H���Z�}��Q��� 	��TJ�C,L���$R���'3�|7�o4��ti�������`?����Ұ���$WC�[����y�k�ڶm�f��7i���Z�WT���%�̹=Ish���6=o6Ц����
��	!�6��x����?i-2Y�6Lڛ�Gɘ��g�ѡ  )��g,<�lp̸���]#[�@�لl�R�}��8��D�P��Vp�8��V��s	l׫C�ԩ�$<3�-�hwlfC��`��CP���,�?g�-�n4�TQw2S�8�	J`U��j��?�����g��'���%w�	O��/�^|Ҩ�{-�'�
��ܹ��W����|�Ŕ�����y �e[f�m�!��"t���A��]��=����v��ü���ߔƲ�����Xf0�TZ��X|���v�s<�Tk�B��ba<�ޮ]|���S"I��U��y(VH�`��!���I�X`�`�����1w�BI5���+d���t�peA��&b��
��e˨hO�V
�Ԁ�ɦ�(U>���.p�2i	�l䌣���!�5�f��S����CM��}�B���0T����6�PL4E lh
V�=3���V�.�>3�d�{ȫv��u�ֽ��2�h���E̜)�>�\���D�8@ �m�L@�75 ��j��MLޤ�����\9LB�z��HY��j���ϙ�D��)`�$D�gEL�m�Vc7���	9"t��j����8������b�z�AJ#��1t�0�tfTu�5��F��#�0�oA�fė�?��N>,,l���z3�H�_�A)�P!D(D����K6���Y��!�93�F[TdF�P��e6�g%�F.N���Q���F�Dd�A�'�R0���=@�.V0�V�M�#���i2�ϝv:�w�:%p*YID���G��q��٩b�b�τv�_;)��k��b��e�_s���$Œ�qE'�8I�n~�E*&��@�]�f6Q�J|����+��n����Ϝ�6ǘx���!]���ҍ�JL���s
���#��k10���A����洚�t%�2U�~|�����\�d��t�~F�5�%�)4^�T�����f2#�ye�ERT�\T�A�К����!�N�;X+~E�l�PG+]�^�ѻ��JաJ�RJ�8S0j󣁟G<�U�զ�T��oT/IRŞ�|'��}u�*�g�u�"#}�r�m慜�jJ�:�dT��|�1��a�{�J�A�(�C��|:Pb[�	S��hV%��
<��t@���#|��S��}B:D]��J��D��
͹�� ֮%�]��BA0Ũ�G!tp
�BaS�n�)��%�U��0�6�o���
�r��/� vv�I
�P� �Ό:M:
^�@�$*h�nw��Nm � (�9��`2>����t64�fPjt��r��n�ӂf��������@8G*_z�f�)�6lҨi&q�5���xs�%i�Y�y�"�v4�c����'b�<��*6��i�'BV-�q2H7��[�1)Tx�P����Q��o�j<��FPXm48(\Z��ک_�?Efշ�������J|����p�_nF� �'7Q�������q�e�c^���3��0�>X�y�nU���el%6W��mn�`.b v&;�
{�0�_�c�|��@����T
�0Fא�O8_߻�y��
b��5\72�Fz
jw�;s� �vH�I���5�v��έ6 ��Ƀ����:mA�ώo
�2@Tb��Q>޳�?c(>������u2�7b�TF�{��3���v��A�۸�zT����� 3)�P�ZhM�6��)�#�H6�5��a�#�����G2�K�3<Ώ �3�,S�'/0&@j'�Vj��gG��H2DVa>���'��w���Ruo��L��|�H�{`/��n�lx�~�c����H�I��b#mB���
��a��6_��q��j�1��x�w�,��
[j��+�nfKy��H�]`�k['Oyr�����I ����YɈx�7��x�_��(���l/]
�;
�9s ��:��%� ��qp��Xh�n�h`)���0�4�}`<�Q8��V��:OPso�����r�&�@�%�>o��j��I�l��l�ϙK�.�F��<���T�HH���Q`�y������e�7C>�עq^ЀN'NŰs���$^�'
ȳf��~m�3-F����n�<?J�b�3p(�d��F����Ugt�2�K�<��}���y_8D�=��m>޾ߚ;� h�hܹԞ����{�z�wR���7���7��'�b��')�y&�+|�B�8f&;H�@�����j�~f���o&�4� �1@�i����ܜ�Օu	��DBL_&�>y_�$�����Q��ͅ�ܹ�F�!۾�A�Zm��A���Y�βs[��t���'����N��S��V�y�c�}��d��=�T��5.A�(hj䨰#�X��zA�w�W�O�"J��#S9\!�}��XC�d+s�BN8`�N��v�X��#��K#Y���"�,X�:F�Gs��Ñ�W����#��J.�:��!���I�4WѲ���nW����~�s͖
07I:���F�����#���_7 �5sz�%�q �f�M���_v&�H�஁���1x�S��Cǵ�IL�$ej���9^o�y�����L"BU��|�J��O��!$	%�T�,^������@���'�Q`��1�	!����%�aH��,�Ϯ]�s�����i�lR2@���8�����>V��nF!��1����Y�&E@Y�����MB�&@ϟO�0�ҿOF(���B",e>N8�^��(9f<%ǜ�ar��RP�7
IIWX�+�\!q��2�`�����,�z#��#��6�1k`֬�,�u�M>���0c��@��J'&\�E��g���M:0C��i˘���!������
�d�dĆ$�X,s��zREO@����4�4�Q�؝��i%!9Ӗ�Kste�ߚT2���4�5@ƹ\ZTkB�P����J��D�L�E�M�$^Zđ�y���^J4�������W\���L�R��M'Q�^��I��?�4��=��z)�1����pg|@��R��{y�����K���"��<S��}ϳ.�R"ٟb��Z���,����d4;gRc�H��~qw)\޹f�?Z�c����5D��K/�h6��w4���	ꮻ�i��	�Ծ���]�u��J�#��"5��T!����N�X班|�.��r��h���D�\ʺ�hټ�v
d�?-�|���hmXo��~��D�_��t �Զs͐�pE!�
�'��.�-LsCq�^��IaHH�f첽=���n���߳�>���=�|�%���[�v�2d�M6���4C��@�;*�P(Y+�T@�� b�+`���������i���r��F�"A�M��Ƀ2�>`�Ol����4ʹ^3�����9�Z��3~.")�`�e[{�Z�,r�h��G'����h�e�@�L�@��+���Q�_�����k�:�����4���o�x�[����$<pϽvj�+ez.���ԝ�o�ҖŰl�~Y�}�#�2��Ś( �{!��N]�d=`����w�1��7,Z]���~�C��ڴ	�Ϭ�����I���9��ϊ�c���`��u2�)����a]��E0��C�!��&���D���֯���]PYvd�gس��t�~74�~��pӍZ`<��Կ��lb1�2��y�x��K@	gLV�I�$+�	.�D�ެxV���E�2�H�N=�0�;�ME��烦U�Bv����+h T���ӛ�\��$�f���P���G�8't�;�@�4���Ĵ�w�&�2����3@A���_�����y�	i��7@��A�����Vc
^Ѳ=��� 
A�����%&1���;�^A�b��\h�E[�S08.��r%��k����iE�/j�A44����D�0�裠�#�n�ɮ��?F��Oѩ�,�4��F@��L� b�*%>0��~o�r�P�!y�K�>��������o�`,�����)oMC�Ͼ`>�X�����l�e�Zk���a�:]��)�����zy���i틫YZH��}�'[Ƹr�*k�@s�3�~��׻'��8�忂Bfi d����_����I������fr�4���{⺃��J`�\A�q���x�2�o�9�Ϡ����|9���o�	�G
�w����oL𑏚���w�cb2L�
Z�=w?,�vC�Rc��}0
�~��Qvm��T��������w���c��7d�@�vQ�¤;AS�kW"A�A\k�h���GG���8��c����
b�Vh�3h�(�i�
Ĺ�/SV�J��4G�M����\��q5�^�4"�w��IR��EfRD�� лP�$�s�]�_x���Ae�R�-[6�Jy�P�ۯ�a�?7��=hB���C&�=gL�kF��b���"e�`6�/
�W��L��-@��>�-"gH>�03v����!R&z"�%��~�m�8r�~�ur������꠮�	��=�w�]�w�kk�����OR�M�����uE����N��G�H+x�?(h�m=&�8R� "S�x�W��<l�ᶐ�����i��i��W����A��k`t�N����-[���IШUdA�B�w^9�����/��l^��'��
��{�	Ԑ0�~����ގR�����={�כ�g�D�#������� ���7��W�
���6A���0�7�z�۠��%
ٖ## �ZL-�4�����mS�n�kU;:>ÿ�@TOtO/�J`뼴�г�a�	��u��*b�7
��f�tA!%�ʜf���u�E�Pw��&���8�p�~�Cc&���|��zHd�|�LȮ�Z?��\�Ad���� _���_ق� lf�3��Qn�4��ܨX|������x�1�Bc���<����;���qU�JO

#����an3�!�NV
Jg�$� ��h�����m$P�b�®9�1(�9�z�n-T�\���SЈ��s 'C��׽�� �7j4���'�M�1h�`;m�L�ى�"���P���CF�O<	v��f9�LztPt�
��SI��3�/;�u!"��"4b��]��4��N+�����_���ǽ�5�jBk�N���dO>	r���UQ�նmf�0��f�<�����z�M�&2Fk�r�;2d�J�td<�M�@~�"P������\�e��
]�a=��PB>�,�F�2������t`�$�00��m�0d7��`��
�T	{
!��P�rX���Ά
 }F��x�{?�1Ȗ�u޿ر6��`�&��h�z�B�k�̚�6"𼃠�_���#��V�4Є5��m��v����E �n�R�Z���!GF����ZmS���3C<�������f�
'����\ ӻ�S�0����Y��Hf�}��̡����o�Y�
�P�+$�x�A��V��ܸG��:<��x�D[���4�a8��:FkK|�-]j��L�B�ôu9�C}
J;�q�u���=��F՞-\=w�	⨣��x)4�/�e"g̰D�����gx�F�0�`�q�B���Mm R�	5��-J1�M�7�jE!ɡb�/�}L��@�,ݔE�߽0�@h���?-_�ۡ��*�w�j�j�H�%�IB�w�.Q�7ҋ���n[��#,B́*_��V��x�a�n���5R��UA����_��H���B�$�Gf 0H����7!@�Ϙс��f�C=E4Ni/�N��NM@��)�7	"N�6f�EU?x��{.���g�~bȇ����E5hskH�Q�
�O�-�JL2m�~�&����&�~4�d)���Nc�_Cv�=PY���zhEtB���lZ`/����ϖ�0����bK��� |�T�BZ�ab�A�� 6Ǎ|Վ��6>�*O<�O?
oj���A�~��>h�
�.�ěߌ�ֿ�2����X3��ԻF-�F��"ak���Am�dT�{�� �or(�y�[P�� �Vi�S�
��7��Jg�ˠ�^d�$��I Zb
m��C���kZ�
�<�<� �b�d��>��=>�N�	���.����~̫�@�.{����l�@S��h����ڪ�![�Θ
}��PlyY�j���"mӎ%�"N�`+}u�FA���G#�h�=w�F��$j�P_�T�9����@���A�E������u�X�ORYf�`��~�U��L /G��纟�ߢ�=����߃������u���	��\@���}bD��Lq�{����A ����߇
IW�<�1ۮ���b�Z��G�#�
�C���ϥ�Ky"C��@:��&��{��N/��>P�S�NtQ�yR�x2Y���Z�c��<��'�'��
�V؈�����M����rVmt�*�]��Mðg_��T-͖f�L��Q�~�rs�+~�S���i۬��@Q�%�ه��}ƙfdM��*h�t2(�J'LIO!/�e��XT6g?!�.Ivj��o�4�y��'Ao�����)�S��g�+�r�q����T~κH�~I@jA}s�����ͥ>F5y,_W.~��y��'��j/D���E&�H(X�_k6�խ�a���5�Oo��'?�|.�џ�s������#��O#��p�c݃��8v~p#�򔭆��5@��MS���?�ز�:e��Ϟ�t��kӼ"�MCa�f��j�)x��u'�j�y3T��_A������"��H}��S'��ʝ�}�\�.ڵe�v�v��U���ZB=f�_�:���ٺ+���佸h��b̑��U�-�h�����I$�3��EwSV���?^
C��%�߻��'&K���O�>� p/d��ȓNJ�fLb"�S��tHMsB�B��]@�1����]̒x
Z'��i�ށYd*0�N��� ��	�j�zw���� �S�
�l��Tn�%4��M�@"h�>�1f�]^���0ʝ��ʙ�X������8g�T{|��k����5_�0�%�Q�P�V����m"g��o��?}Z��
��A�ӟ1�<���z�qДv��l.����T�]�Lǂ�R�D�pt(��*q@�q��ʴ�~_�E:Tk�{轍�i����z�h��I(5U��S�������w���
�~��Ǯ��_�*�_
t�d�	��)���=c������k����6lX�)1��]tv��$2"C�O?��q��022矿/Y������{�ڵp�7@_o���3`ѢC�=g����]T��:�I��b�p��W?�ͻ��O�������W~�Sh�vP���>�A�}�Chu��-ɖ��o�n���O�c�=f>�w�,$�R�p�ac�Y ��[Zx���M����CT�[O�v-�^o�)&�A$�KD�^�	�rS �BB�˾��1Խ+��n����_b�ܸ��׃��gԭ{�oA�G�
�k�.EI�(�{GGGa7�8��>CC�	�A��
��a	�xc�
���͘�tY�tDӠ��S�$��V�+o.�Z?��۶A����|����~v���W�0s}���%�P�����ۋt��Ntom���l�6U*���lݶ�m�3fLOm�wi�yX*F;�b�1B� D����BL�{*�I��-�G:xB�C���1�u-�������EA�=��ψ���-E�7_1v?4jZ����P��
��{��9sf�6Ǩvb+��I1�P���f� ���V�\��А]2VE�P1��A�322��aί�Lݏ��B���)h�Z	P�]�>�YᏠ������g^�� ~�h�{���~�C����u\u�r���npp�!М�s�xlظ	v��
-����Wϛ�ռ��{axxfϞ==u;�6=1�ܵDe��	^��ٳ�o<��D�\��ݻ`������*X�x	,YrT��yv�I\��1رc�9����c^z�Es��k	O��@��kB���?�&�d�v(��6�h�ẟ@N�>������9I���]ud�TxNҾm>?�ұT��o�ڵ�H��T]�n���T��6oތ����ϓ\�n$��o���<cn���ر�>��N	'��F}�a��]Aⷡ�6�,XhT?}��;��V4I~��N{�솣�::��^�(�y�_�j^����Cxy�/�������
����9'	 E/�X��Q5wY쟈�i�F��gΜn�h'I��h4���P{V>���	8�7�:J�C��h�:�V�Bob횵������4�~�n�Kh�V�zN>�MA[�w�u�x�I�O<��'�|���sϭ2ğ;w���wpp��B�֭5Z 
$M��г�����^t��G�u}�؁�@|�cP��� �.
��L�$�lj�"w
��߆7x+J���F�Ϝ9è�=�̜9���~a�9���kA�n����C&����f��{�|߱��q���5k֡��	�8J�Q��-��	�7�h�ܞ={�Yd���ע��5�/��Һ�s����3`�O���(5EL@\��(��uv� ����|�	[�O��.<�Gm�dc!���^�$�'mB:NKh��
��b;����{.��y�L�6�H;��C-2�@nb�V���:UH�YPEmA�<�1����5;�p����Z�fn�:���f���0�L�C�P�Ua/��>c�Vl:�A��#{
�%i�I��i`���hk�4��zjg��e�`�r��4
*��{N
�l'`����>�����o��j�DI�-.&��;��蜽�=(�Us�X!s�F&��<����uc����kJ�~]�#��$�op�����L�dP�·,��t3iqhL1�h]x&D���	�;�[X��y�h���[��c��e&Y�����{��L�"Q���Lg�;|��VY���J:ir!=P%SE�f�;d�*1נK�bLB(�☓�԰_L���
UDI��y���1���
��A����}��nٲ�:dо�&����Y��BkU	I�a��R�/�Y�I/ڣ��-�K���F<���PC�
'+�?���,c��fY}@��l�L�>B��������"dw7l؈D�c�����N�a�:D��N6{��@��O��#.�b�
n،3�q�
4�Y�I9������j����#�6L��z²u�0üy�͔��ỳr�Z�N�\@�~"��|A٢�����hK�ΒE����7�G�D��������G�Ĝ@�YH�>C�;�}&�Т$�Q��ɇo �	��%�H�>�3����am�zCC{����x��?�w�Q�{��6�io����B�wP���d��
��L�*�;V��%֓A�֮��D4r��g�"�C&`�����S�p͚5肽�.�s�Q�@.$eɜ<��*زu���hD�#�X���75�ƞ#S�Z�4���h����"r�!������A�3�ǯ|�I��Lxy��=�4���)�Pp��O#:��Bں:>r�|��6��m�6�~���7#3MM!�f���'��L�-����=Ό�Pl��)��K�2~:�_��f���Q`�� ��)�L�\����@Ӓ%�wK�K8��%�"��"���L���0��A��7,`b���2��ݜ	ta|y��=g�X$��E���Z��e��(��gBS�h�!�Ȧ�x1�~����y�ޟrʩ��$�dۉy^p0�~��&vO&:ᡇ� ��?���W̆����SO����X����\���L!᷾�4S��}�6�'(kI��~�
�u�_���}��S��!�y�[�{o(s��4hZ�4t2ił��Ҷt���9����Z��G���u�r�B��b����X�ӿ����������6T�]+�>��^@,n�}�p��a�{��V��e_Ծ5A*٩Y�����N�H���:�J?���Bj��׭P������R'��ƚU()׮�4	]�nbV�+�\�X`
�
UB���t��N�	��'G�=>s0Ĵo�@�r�x�T؛�����B`*v&��tb'���L�z��U���O��E�xO+�ƴ``�C��q��	h�����W�H�>��^]Tc����	xx7=}Iч���X��'�FV�%��r�b�*`����	��x����Z�;*�Tb�|��$U�Gto6�N��fv�2�O6ho���w6n�d������v�ڃE��i�!
7P؂��Z�@3@�]԰��.z�{��F��}�p�������-0!�/�е��ݵH��1��ko^���-h�	c�|�b����V�ud��������{���}���`�d��/_����F�t!�����<���5xe���!�K���yRK83j�!IEND�B`�PK
��rIG�a��
�
!�chrome/skin/C_AdobeLogo_48x48.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR00W��tEXtSoftwareAdobe ImageReadyq�e<$iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Macintosh)" xmpMM:InstanceID="xmp.iid:126AC02EA75F11E1A308B26CB3484F34" xmpMM:DocumentID="xmp.did:126AC02FA75F11E1A308B26CB3484F34"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:286E3809A75B11E1A308B26CB3484F34" stRef:documentID="xmp.did:286E380AA75B11E1A308B26CB3484F34"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>ނ,IDATx��YkLW>�C���-��i�&�.jSA��XъiӴ�FkZ56��?U�&����6�j ���>�h"�B���WD b��J�[���}/KϹafgfYBz��;3{����sϝՌ����iT�����o�@�B���������h�Z��ܹ��{�S�֡w��"TH*O���Ky�`�Z!""⭒�SEEŒ��¦��1�&��XO��OKK��N�N��u������J<@�E��jSSg��^�w���DGGC^^tuu9�@hQ���'��6��v��7L&����������,//�}�u��"n���Ń���>F+�^��V����_H�ς؎⒑%�2��$n��{������IcIbV�:�= f��d02֯_!X�Q�Z�0p�<�;�{6��'O��^A�H�\�����ŋ/3��R	�p�]L�Y��:ڤ�I�f��n��� �###yY*�Gmmm߉��r�Q�W_r2�"}<���f�D@�����[���^����̢������N'�H���,233a�ҥ�oݺE����8N�5S�nY@2�_�F�Ck���bcca``YZu8�#�Saa�Q��cj�p�>X�]D�xT^�1�WWǛí0��D�B||<�\.*..��W�F/R�Y�j���6�xp)\L؊qzv�*��8pɌ
�J��<Q���$�<�l6����	NV�X�J�&U����KJ�-O��x<y�@��ͦ'֢�U����S�,L=Y�vfnc���΍�6���2�5=G!R�z
Z�щ@�L��� ��Q��`�����K��O��³)�Y_X�	+]�0�R�x�yC�ŧ*�Z���Zo�8�&1"����;Q��("U��[�/
�mKHHP~��/f��ht�gz
�2�v]���@��1��@ុ��5���|��N�oR�bsJy@��j�`	��}����֗�Ĕ< fi����<�)(e�hMr�h@*�D�<0qU�aј��l���7Z�g��l��ŀX:Z���:��n��X㵜ե<V
I����f4�XTNI�ߧD!��8.~y东,ٍM��<�&���a�[G�,��]����W3�<�s@���J��tJ���}��B���<��6Hr[ij
;��@<(?�,?�[[�ٸc� ���!����Bbch����@��|HAI2䀾��R���b"Ԭ4m�D`�.����'ޛ�e����Rh�+���!uE>�>1�<}YBӉe��,�����놜F�Y0�<��^E˿VX��?4��7�9�I���x�Sxi6�W���}	9[�I��j?���%`.!E�]o��3����N0]����n�\��e�bȆ�t���p��
�&A�����p��>��{����8on<�,�r�AH�,��k7�������\��(Կ��3	�=�B=<����x�(>�#d��灰�&&E:*�����ݿ�S%���8
|��Z3�c�!_�xz�� ~t���B�'�
k�?�)��x���
�U�aK����B��[a��M`��9G�
KJwʞ��K�S>R����kj�-�^s"��kNTJ�����r
��>�ƈ�6o��0���p�^�Z
��s����m5��CT>w�Ɛ���(C�B��'p�.L}�`���{�|j-�Vqz�z�=j3���jLK-n��j���aX�x;n�`?o?fS�j5��v
(�Km�)�c�}�O�����Dr�IEND�B`�PK
��rI WN��!�chrome/skin/C_AdobeLogo_64x64.pngSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X�PNG


IHDR@@�iq�tEXtSoftwareAdobe ImageReadyq�e<$iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Macintosh)" xmpMM:InstanceID="xmp.iid:126AC032A75F11E1A308B26CB3484F34" xmpMM:DocumentID="xmp.did:126AC033A75F11E1A308B26CB3484F34"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:126AC030A75F11E1A308B26CB3484F34" stRef:documentID="xmp.did:126AC031A75F11E1A308B26CB3484F34"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>V���TIDATx��Z{PT���^�T`EQ��>�F�X��6N��:vj3�5M;�8Ӵ����i�LML41�jFc_>Zk��Q�h���� ��XV@@w�}���ˬ�>�].��9�r�9�����|����ۋǹ��
�				fl��l��+�SM���<��=��=�N'4M!}-11��^�dŹ��TB_�?Ӓkv"	w���U�T{����(������,�C�ѣG���������QQQ�Z�HNN�Ull�7���?
	�^
���k��|�`���hii�1b�$j�K�F�����!��T�ݻ�kmm-Ǝ����P����"��N���BB%�_����m�n�*|z�Y��ѱgO��g���><�J}��hWW�`uuuLF��XSSS6nܸ�R��0�n�K�m;::PL�a@�m�>��/��u\lj�:{���vQmڹS !44.�k���,MOO�ꋄ����Ű�*L��%��&_G�Æ!�@�m|����1�/�vʔ��['O�b�
�^[�V�3{\sL�|@[[�}��Ҳ�_�^�jY& ���1�F��I+XI�8�@:���@Z�Z;I��ҥ��e�͛�v��oј�.3��0;q�b��29����2�������Ч�n�
�u�Z]�<ڸt�@���k��Zj���B��d�'5N�"��3�M���L++��d�%%x���l�
r�I�U�Rƌ�luu�N)$h�=��}D��I�K�r�uۮ�^�]�p���L>��B��1Rb_2�����x�_�|��	5�=�m-�51Oĸ�o�������|@�Lx�B�VuÆ
�b�[cff&�F#���AhWXC����:_$h<}����X��$��td^Zh�`�/v'�y<G��j�Z__/8�;w�[cYY���q:0���3g�|����t�X���<h�~��p.����h���`
ϑN��6���H!*�gR��U��ގ]�v���H�dɒ:t�w�J���i�2J�H�Gv>�Ģv�$ĭ-,��&է���
�@����}f ��*P111X�x񕸸8vJ6ogY
��#��xA�8�
`P�=,�6娐���v�p�_�q�ԩ�f��`||�\�i�G@�#��a��cS��)pU ���t:�Zccc>
����I�m-�E��d�%q߾}�e>|���ī�`��s�x@bXbM�I�~.⢼�1F��̤{jj��䇿�ޛ���]	�����@R�+�fY�����m6���)�cX)���h��� �;%��FT^G�;�a���X"�`0xUW&�	`20�e/��؏��}E|n�A��\`�]}���Ԅ��m�w��\�;��ι=p1훟+Sg\��\EpU��R��W�� ��I�0P��7K�]S�7s�+�-	�Y�6q,�@qHM}��C���Hp�����j�B�O_��LҊ�X�+@�o
��
#�h�cs���MlB�_�(�
�yV
xqu����N������_�Zs�������J	��o_�8|8M_�U]�S�R���o� k���9S��(dz�9泯\sdF��`���}Kp�5�w"��$K�R$�on*��/e�=�f=-�u�u�8Y����?(�w��̜�^
iC��ٙ�%,gg�
�}���H!0�( �+���)���%$�۷l7��KĠ( ��z:	F�>U�7�?w�e����CRW7o���{â�pRPT��;¯�R���������D�6ƿ�:²�u�0�<$��o�J(��/C�iA�/_F�F��M롦���ϫQ\\p9��+��:��j�~�{r�Ю�����
a
7Q��j\�v��CĠ) �7#�V?s�ړ_}�Н���~/^�pNP��P0c�\��=��LF�k��&Lq�Gk������(kkG�O~���\���;H�H�9��_^�>º�1e�k�%�
�o\-���o�+)Ǟ�I����\8w ��ύ��GRR��d�̱��PP^Z
|z���F�i���fܼy��h�N��4��3_�����.h�#�����k��8&��:5�s򐛟�p����_sKV�ADh(�X��Џ��L&4��77!�ڄhS�਴���3Mg����
V�
��́�Lh\z:F%���L���*�����W0�|@��������w;`���vB�L�o����{j&b�& ��yDGB���7����n�'����)4��a�D�'gbTJ2�5����aLK�mS]�1ݳ�2K��b�*����y/@[S��Va�݉{ŗ�/Yef`�S��U�n~��XQ{�0*��F{U
zHE���M��q�G u�X��޳���t�\9�
`G��<���@�u���O1�ˆ�ٹ�/Z()��Y��H�.��P����R��W�����]��qb��9���P���t:������/��9��F�e����R�G�E�={	�p�
��P;���nTj�⠃�TJz}��{7};�H�9��Ǒ��K���.)O�z���|�ߡ��G����V��aRf-���UVZ	��X���16'�ݎm���b4=6<�e=Ew*ɓ�JT��(�~g��oAej���o����
��V ��_��$X8���X�Γg1뇨nmA�M��=��K^”�-�=Y9��ŔU@x��(�R;и�C�:��������_����0���`�CJ�ӈ�q ��7���@1�+	Z�@�n�_U"b��~,�r�P�"�����L�C&%6TJ����r�xt
�iQ�	�.[�#D�o%��x��GO7	���IEND�B`�PK
��rI�6��((�chrome/skin/web2pdf.cssSDk���R�cd`ia``0b�bFV0�UH��5r}�Ӱ@y�e_�q�1210010���J0�g�g���P�E � aV!0��c'��J!���UT
~�/X`�/X`�/X.web2pdfclass {
	font-size:12pt;
}

PK
��rI0�Achrome/SDUT~�/XPK
v�rI0�A�chrome/content/SDUT`�/XPK
��rI�
�
�
  ���chrome/content/browser_status.jsSD�UT~�/XPK
��rI�od��� ��
chrome/content/overlay_next.xulSD�UT~�/XPK
��rIFpQ� ���!chrome/content/statusdlg.jsSD�UT~�/XPK
��rI�^zV��  ��e'chrome/content/statusdlg_new.xulSD�UT~�/XPK
��rI�1&�D�D$ ��.chrome/content/web2pdf_conversion.jsSD�UT~�/XPK
��rI�H]��^�^% ���schrome/content/web2pdf_framescript.jsSD�UT~�/XPK
��rIO�ԏ_�_� ���chrome/content/web2pdf_new.jsSD�UT~�/XPK
��rI|н�"" ��)�chrome/content/web2pdf_prefs.jsSD�UT~�/XPK
��rIR��* ���chrome/content/web2pdf_utils.jsSD�UT~�/XPK
w�rI0�Aۘchrome/locale/SDUTa�/XPK
v�rI0�A��chrome/locale/ar_AE/SDUT`�/XPK
�rI��x�� ��m�chrome/locale/ar_AE/web2pdf.dtdSD�UT��/XPK
�rI���RR& ����chrome/locale/ar_AE/web2pdf.propertiesSD�UT��/XPK
v�rI0�Aգchrome/locale/cs_CZ/SDUT`�/XPK
�rI	�#o�� ����chrome/locale/cs_CZ/web2pdf.dtdSD�UT��/XPK
�rI͐���& ��N�chrome/locale/cs_CZ/web2pdf.propertiesSD�UT��/XPK
v�rI0�A�chrome/locale/da_DK/SDUT`�/XPK
�rIw��D�� ����chrome/locale/da_DK/web2pdf.dtdSD�UT��/XPK
�rI����& ��U�chrome/locale/da_DK/web2pdf.propertiesSD�UT��/XPK
v�rI0�A��chrome/locale/de_DE/SDUT`�/XPK
�rI:W��� ��{�chrome/locale/de_DE/web2pdf.dtdSD�UT��/XPK
�rI'!

& ��2�chrome/locale/de_DE/web2pdf.propertiesSD�UT��/XPK
v�rI0�A�chrome/locale/el_GR/SDUT`�/XPK
�rI��x�� ����chrome/locale/el_GR/web2pdf.dtdSD�UT��/XPK
�rI���RR& ��!�chrome/locale/el_GR/web2pdf.propertiesSD�UT��/XPK
v�rI�A7�chrome/locale/en-US/SDUT`�/XPK
�rI0�A�chrome/locale/en_US/SDUT��/XPK
��rI��x�� ����chrome/locale/en_US/web2pdf.dtdSD�UT~�/XPK
��rI_'�UU& ��!�chrome/locale/en_US/web2pdf.propertiesSD�UT~�/XPK
v�rI0�A:�chrome/locale/es_ES/SDUT`�/XPK
�rI��{/�� ���chrome/locale/es_ES/web2pdf.dtdSD�UT��/XPK
�rI�����& ����chrome/locale/es_ES/web2pdf.propertiesSD�UT��/XPK
w�rI0�A=�chrome/locale/fi_FI/SDUTa�/XPK
�rI��"��� ��	�chrome/locale/fi_FI/web2pdf.dtdSD�UT��/XPK
�rIa{���& ����chrome/locale/fi_FI/web2pdf.propertiesSD�UT��/XPK
w�rI0�A��chrome/locale/fr_FR/SDUTa�/XPK
�rIVѡLL ����chrome/locale/fr_FR/web2pdf.dtdSD�UT��/XPK
�rI���^11& ����chrome/locale/fr_FR/web2pdf.propertiesSD�UT��/XPK
w�rI0�A��chrome/locale/he_IL/SDUTa�/XPK
�rI��x�� ���chrome/locale/he_IL/web2pdf.dtdSD�UT��/XPK
�rI���RR& ���chrome/locale/he_IL/web2pdf.propertiesSD�UT��/XPK
w�rI0�A�chrome/locale/hr_HR/SDUTa�/XPK
�rI�+� ���chrome/locale/hr_HR/web2pdf.dtdSD�UT��/XPK
�rI���Y��& ��;chrome/locale/hr_HR/web2pdf.propertiesSD�UT��/XPK
w�rI0�A�chrome/locale/hu_HU/SDUTa�/XPK
�rIsp�x>> ��bchrome/locale/hu_HU/web2pdf.dtdSD�UT��/XPK
�rIs�B���& ��]chrome/locale/hu_HU/web2pdf.propertiesSD�UT��/XPK
w�rI0�A�chrome/locale/it_IT/SDUTa�/XPK
�rI����� ���chrome/locale/it_IT/web2pdf.dtdSD�UT��/XPK
�rI�]m���& ��N"chrome/locale/it_IT/web2pdf.propertiesSD�UT��/XPK
w�rI0�A�&chrome/locale/ja_JP/SDUTa�/XPK
�rI�7�D ���'chrome/locale/ja_JP/web2pdf.dtdSD�UT��/XPK
�rI�J%55& ���-chrome/locale/ja_JP/web2pdf.propertiesSD�UT��/XPK
w�rI0�A~2chrome/locale/ko_KR/SDUTa�/XPK
�rI���� ��J3chrome/locale/ko_KR/web2pdf.dtdSD�UT��/XPK
�rIo4;�33& ���8chrome/locale/ko_KR/web2pdf.propertiesSD�UT��/XPK
w�rI0�A�=chrome/locale/nb_NO/SDUTa�/XPK
�rI���O�� ���>chrome/locale/nb_NO/web2pdf.dtdSD�UT��/XPK
�rI���Ԑ�& ��YDchrome/locale/nb_NO/web2pdf.propertiesSD�UT��/XPK
w�rI0�A�Hchrome/locale/nl_NL/SDUTa�/XPK
�rIPU��� ��yIchrome/locale/nl_NL/web2pdf.dtdSD�UT��/XPK
�rI���˼�& ��)Ochrome/locale/nl_NL/web2pdf.propertiesSD�UT��/XPK
w�rI0�A�Schrome/locale/pl_PL/SDUTa�/XPK
�rI���?? ��uTchrome/locale/pl_PL/web2pdf.dtdSD�UT��/XPK
�rI��s�((& ��qZchrome/locale/pl_PL/web2pdf.propertiesSD�UT��/XPK
w�rI0�A]_chrome/locale/pt_BR/SDUTa�/XPK
�rI�WU�� ��)`chrome/locale/pt_BR/web2pdf.dtdSD�UT��/XPK
�rI��k��& ���echrome/locale/pt_BR/web2pdf.propertiesSD�UT��/XPK
w�rI0�A:jchrome/locale/ro_RO/SDUTa�/XPK
�rIM����� ��kchrome/locale/ro_RO/web2pdf.dtdSD�UT��/XPK
�rIJT`��& ���pchrome/locale/ro_RO/web2pdf.propertiesSD�UT��/XPK
w�rI0�Ajuchrome/locale/ru_RU/SDUTa�/XPK
�rIe���� ��6vchrome/locale/ru_RU/web2pdf.dtdSD�UT��/XPK
�rI��޺��& ���}chrome/locale/ru_RU/web2pdf.propertiesSD�UT��/XPK
w�rI0�AJ�chrome/locale/sk_SK/SDUTa�/XPK
�rIX��BB ���chrome/locale/sk_SK/web2pdf.dtdSD�UT��/XPK
�rI��ۿ��& ���chrome/locale/sk_SK/web2pdf.propertiesSD�UT��/XPK
w�rI0�AĎchrome/locale/sl_SI/SDUTa�/XPK
�rI��� ����chrome/locale/sl_SI/web2pdf.dtdSD�UT��/XPK
�rI�S����& ��2�chrome/locale/sl_SI/web2pdf.propertiesSD�UT��/XPK
w�rI0�A��chrome/locale/sv_SE/SDUTa�/XPK
�rI�!�y�� ��b�chrome/locale/sv_SE/web2pdf.dtdSD�UT��/XPK
�rI��Rr��& ���chrome/locale/sv_SE/web2pdf.propertiesSD�UT��/XPK
w�rI0�AP�chrome/locale/tr_TR/SDUTa�/XPK
�rI�N?�� ���chrome/locale/tr_TR/web2pdf.dtdSD�UT��/XPK
�rI�}��& ��ʪchrome/locale/tr_TR/web2pdf.propertiesSD�UT��/XPK
w�rI0�Au�chrome/locale/uk_UA/SDUTa�/XPK
 �rI�
�� ��A�chrome/locale/uk_UA/web2pdf.dtdSD�UT��/XPK
 �rI0"��& ����chrome/locale/uk_UA/web2pdf.propertiesSD�UT��/XPK
w�rI0�A�chrome/locale/zh_CN/SDUTa�/XPK
 �rIR�]�� ��ھchrome/locale/zh_CN/web2pdf.dtdSD�UT��/XPK
 �rIJ;bb& ��B�chrome/locale/zh_CN/web2pdf.propertiesSD�UT��/XPK
w�rI0�Ah�chrome/locale/zh_TW/SDUTa�/XPK
!�rI �I[�� ��4�chrome/locale/zh_TW/web2pdf.dtdSD�UT��/XPK
!�rI��'33& ����chrome/locale/zh_TW/web2pdf.propertiesSD�UT��/XPK
v�rI0�Ax�chrome/skin/SDUT`�/XPK
��rI�YԜ� ��<�chrome/skin/AX_Append_Sm_N.pngSD�UT~�/XPK
��rI�)��' ����chrome/skin/AX_ConvertWebEmail_Sm_N.pngSD�UT~�/XPK
��rI�:�UU$ ���chrome/skin/AX_PrintWebPage_Sm_N.pngSD�UT~�/XPK
��rIOg%/��' ��6�chrome/skin/AX_ProgressSpin_Sm_01_N.pngSD�UT~�/XPK
��rI7�<��' ����chrome/skin/AX_ProgressSpin_Sm_02_N.pngSD�UT~�/XPK
��rI�3��' ��n�chrome/skin/AX_ProgressSpin_Sm_03_N.pngSD�UT~�/XPK
��rIk��?��' ���chrome/skin/AX_ProgressSpin_Sm_04_N.pngSD�UT~�/XPK
��rI�n!��' ����chrome/skin/AX_ProgressSpin_Sm_05_N.pngSD�UT~�/XPK
��rI^Ii���' ��N�chrome/skin/AX_ProgressSpin_Sm_06_N.pngSD�UT~�/XPK
��rI�YN���' ���chrome/skin/AX_ProgressSpin_Sm_07_N.pngSD�UT~�/XPK
��rIzn����' ����chrome/skin/AX_ProgressSpin_Sm_08_N.pngSD�UT~�/XPK
��rI5�c!��' ��*�chrome/skin/AX_ProgressSpin_Sm_09_N.pngSD�UT~�/XPK
��rIJ���' ���chrome/skin/AX_ProgressSpin_Sm_10_N.pngSD�UT~�/XPK
��rI�f����' ��ochrome/skin/AX_ProgressSpin_Sm_11_N.pngSD�UT~�/XPK
��rIށ�{��' ��
chrome/skin/AX_ProgressSpin_Sm_12_N.pngSD�UT~�/XPK
��rI�RY��( ���chrome/skin/AX_State_Done_Error_Sm_N.pngSD�UT~�/XPK
��rI��i|* ��Dchrome/skin/AX_State_Done_Success_Sm_N.pngSD�UT~�/XPK
��rI*��) ��!chrome/skin/AX_State_Downloading_Sm_N.pngSD�UT~�/XPK
��rI�Vu<<, ���chrome/skin/AX_WebCap_ConvertButton_Sm_N.pngSD�UT~�/XPK
��rI���ss( ���!chrome/skin/AX_WebCap_Converted_Sm_D.pngSD�UT~�/XPK
��rIi��p||( ��7)chrome/skin/AX_WebCap_Converted_Sm_N.pngSD�UT~�/XPK
��rIܗ���
�
 ��y0chrome/skin/AX_WebCap_Xl_N.pngSD�UT~�/XPK
��rIR_I(�;�; ���;chrome/skin/C_AdobeLogo.pngSD�UT~�/XPK
��rIG�a��
�
! ��~xchrome/skin/C_AdobeLogo_48x48.pngSD�UT~�/XPK
��rI WN��! ����chrome/skin/C_AdobeLogo_64x64.pngSD�UT~�/XPK
��rI�6��(( ����chrome/skin/web2pdf.cssSD�UT~�/XPK||h-u�