TypeError
strtotime(): Argument #1 ($datetime) must be of type string, array given TypeError thrown with message "strtotime(): Argument #1 ($datetime) must be of type string, array given" Stacktrace: #14 TypeError in /home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/timber/timber/lib/Twig.php:336 #13 strtotime in /home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/timber/timber/lib/Twig.php:336 #12 Timber\Twig:intl_date in /home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/twig/twig/src/Environment.php:418 #11 __TwigTemplate_177edff3293891cf11c79de130f8d798:doDisplay in /home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/twig/twig/src/Template.php:405 #10 Twig\Template:displayWithErrorHandling in /home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/twig/twig/src/Template.php:378 #9 Twig\Template:display in /home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/twig/twig/src/Template.php:390 #8 Twig\Template:render in /home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/twig/twig/src/TemplateWrapper.php:45 #7 Twig\TemplateWrapper:render in /home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/timber/timber/lib/Loader.php:79 #6 Timber\Loader:render in /home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/timber/timber/lib/Timber.php:334 #5 Timber\Timber:compile in /home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/timber/timber/lib/Timber.php:383 #4 Timber\Timber:fetch in /home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/timber/timber/lib/Timber.php:410 #3 Timber\Timber:render in /home/sc2xegu4502/public_html/web/app/themes/ariane_theme/single.php:64 #2 include in /home/sc2xegu4502/public_html/web/wp/wp-includes/template-loader.php:132 #1 require_once in /home/sc2xegu4502/public_html/web/wp/wp-blog-header.php:19 #0 require in /home/sc2xegu4502/public_html/web/index.php:6
Stack frames (15)
14
TypeError
/vendor/timber/timber/lib/Twig.php336
13
strtotime
/vendor/timber/timber/lib/Twig.php336
12
Timber\Twig intl_date
/vendor/twig/twig/src/Environment.php418
11
__TwigTemplate_177edff3293891cf11c79de130f8d798 doDisplay
/vendor/twig/twig/src/Template.php405
10
Twig\Template displayWithErrorHandling
/vendor/twig/twig/src/Template.php378
9
Twig\Template display
/vendor/twig/twig/src/Template.php390
8
Twig\Template render
/vendor/twig/twig/src/TemplateWrapper.php45
7
Twig\TemplateWrapper render
/vendor/timber/timber/lib/Loader.php79
6
Timber\Loader render
/vendor/timber/timber/lib/Timber.php334
5
Timber\Timber compile
/vendor/timber/timber/lib/Timber.php383
4
Timber\Timber fetch
/vendor/timber/timber/lib/Timber.php410
3
Timber\Timber render
/home/sc2xegu4502/public_html/web/app/themes/ariane_theme/single.php64
2
include
/home/sc2xegu4502/public_html/web/wp/wp-includes/template-loader.php132
1
require_once
/home/sc2xegu4502/public_html/web/wp/wp-blog-header.php19
0
require
/home/sc2xegu4502/public_html/web/index.php6
/home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/timber/timber/lib/Twig.php
    }
 
    /**
     *
     *
     * @param string  $date
     * @param string  $format (optional)
     * @return string
     */
    public function intl_date( $date, $format = null ) {
        if ( $format === null ) {
            $format = get_option('date_format');
        }
 
        if ( $date instanceof \DateTime ) {
            $timestamp = $date->getTimestamp() + $date->getOffset();
        } else if ( is_numeric($date) && (strtotime($date) === false || strlen($date) !== 8) ) {
            $timestamp = intval($date);
        } else {
            $timestamp = strtotime($date);
        }
 
        return date_i18n($format, $timestamp);
    }
 
    /**
     * Returns the difference between two times in a human readable format.
     *
     * Differentiates between past and future dates.
     *
     * @see \human_time_diff()
     *
     * @param int|string $from          Base date as a timestamp or a date string.
     * @param int|string $to            Optional. Date to calculate difference to as a timestamp or
     *                                  a date string. Default to current time.
     * @param string     $format_past   Optional. String to use for past dates. To be used with
     *                                  `sprintf()`. Default `%s ago`.
     * @param string     $format_future Optional. String to use for future dates. To be used with
     *                                  `sprintf()`. Default `%s from now`.
     *
/home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/timber/timber/lib/Twig.php
    }
 
    /**
     *
     *
     * @param string  $date
     * @param string  $format (optional)
     * @return string
     */
    public function intl_date( $date, $format = null ) {
        if ( $format === null ) {
            $format = get_option('date_format');
        }
 
        if ( $date instanceof \DateTime ) {
            $timestamp = $date->getTimestamp() + $date->getOffset();
        } else if ( is_numeric($date) && (strtotime($date) === false || strlen($date) !== 8) ) {
            $timestamp = intval($date);
        } else {
            $timestamp = strtotime($date);
        }
 
        return date_i18n($format, $timestamp);
    }
 
    /**
     * Returns the difference between two times in a human readable format.
     *
     * Differentiates between past and future dates.
     *
     * @see \human_time_diff()
     *
     * @param int|string $from          Base date as a timestamp or a date string.
     * @param int|string $to            Optional. Date to calculate difference to as a timestamp or
     *                                  a date string. Default to current time.
     * @param string     $format_past   Optional. String to use for past dates. To be used with
     *                                  `sprintf()`. Default `%s ago`.
     * @param string     $format_future Optional. String to use for future dates. To be used with
     *                                  `sprintf()`. Default `%s from now`.
     *
/home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/twig/twig/src/Environment.php
            $key = $this->cache->generateKey($name, $mainCls);
 
            if (!$this->isAutoReload() || $this->isTemplateFresh($name, $this->cache->getTimestamp($key))) {
                $this->cache->load($key);
            }
 
            $source = null;
            if (!class_exists($cls, false)) {
                $source = $this->getLoader()->getSourceContext($name);
                $content = $this->compileSource($source);
                $this->cache->write($key, $content);
                $this->cache->load($key);
 
                if (!class_exists($mainCls, false)) {
                    /* Last line of defense if either $this->bcWriteCacheFile was used,
                     * $this->cache is implemented as a no-op or we have a race condition
                     * where the cache was cleared between the above calls to write to and load from
                     * the cache.
                     */
                    eval('?>'.$content);
                }
 
                if (!class_exists($cls, false)) {
                    throw new RuntimeError(sprintf('Failed to load Twig template "%s", index "%s": cache might be corrupted.', $name, $index), -1, $source);
                }
            }
        }
 
        // to be removed in 3.0
        $this->extensionSet->initRuntime($this);
 
        return $this->loadedTemplates[$cls] = new $cls($this);
    }
 
    /**
     * Creates a template from source.
     *
     * This method should not be used as a generic way to load templates.
     *
     * @param string $template The template source
/home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/twig/twig/src/Template.php
        } else {
            ob_start(function () { return ''; });
        }
        try {
            $this->display($context);
        } catch (\Throwable $e) {
            while (ob_get_level() > $level) {
                ob_end_clean();
            }
 
            throw $e;
        }
 
        return ob_get_clean();
    }
 
    protected function displayWithErrorHandling(array $context, array $blocks = [])
    {
        try {
            $this->doDisplay($context, $blocks);
        } catch (Error $e) {
            if (!$e->getSourceContext()) {
                $e->setSourceContext($this->getSourceContext());
            }
 
            // this is mostly useful for \Twig\Error\LoaderError exceptions
            // see \Twig\Error\LoaderError
            if (-1 === $e->getTemplateLine()) {
                $e->guess();
            }
 
            throw $e;
        } catch (\Exception $e) {
            $e = new RuntimeError(sprintf('An exception has been thrown during the rendering of a template ("%s").', $e->getMessage()), -1, $this->getSourceContext(), $e);
            $e->guess();
 
            throw $e;
        }
    }
 
/home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/twig/twig/src/Template.php
    {
        return $this;
    }
 
    /**
     * Returns all blocks.
     *
     * This method is for internal use only and should never be called
     * directly.
     *
     * @return array An array of blocks
     */
    public function getBlocks()
    {
        return $this->blocks;
    }
 
    public function display(array $context, array $blocks = [])
    {
        $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
    }
 
    public function render(array $context)
    {
        $level = ob_get_level();
        if ($this->env->isDebug()) {
            ob_start();
        } else {
            ob_start(function () { return ''; });
        }
        try {
            $this->display($context);
        } catch (\Throwable $e) {
            while (ob_get_level() > $level) {
                ob_end_clean();
            }
 
            throw $e;
        }
 
/home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/twig/twig/src/Template.php
    public function getBlocks()
    {
        return $this->blocks;
    }
 
    public function display(array $context, array $blocks = [])
    {
        $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
    }
 
    public function render(array $context)
    {
        $level = ob_get_level();
        if ($this->env->isDebug()) {
            ob_start();
        } else {
            ob_start(function () { return ''; });
        }
        try {
            $this->display($context);
        } catch (\Throwable $e) {
            while (ob_get_level() > $level) {
                ob_end_clean();
            }
 
            throw $e;
        }
 
        return ob_get_clean();
    }
 
    protected function displayWithErrorHandling(array $context, array $blocks = [])
    {
        try {
            $this->doDisplay($context, $blocks);
        } catch (Error $e) {
            if (!$e->getSourceContext()) {
                $e->setSourceContext($this->getSourceContext());
            }
 
/home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/twig/twig/src/TemplateWrapper.php
     * directly (use Twig\Environment::load() instead).
     *
     * @internal
     */
    public function __construct(Environment $env, Template $template)
    {
        $this->env = $env;
        $this->template = $template;
    }
 
    /**
     * Renders the template.
     *
     * @param array $context An array of parameters to pass to the template
     */
    public function render(array $context = []): string
    {
        // using func_get_args() allows to not expose the blocks argument
        // as it should only be used by internal code
        return $this->template->render($context, \func_get_args()[1] ?? []);
    }
 
    /**
     * Displays the template.
     *
     * @param array $context An array of parameters to pass to the template
     */
    public function display(array $context = [])
    {
        // using func_get_args() allows to not expose the blocks argument
        // as it should only be used by internal code
        $this->template->display($context, \func_get_args()[1] ?? []);
    }
 
    /**
     * Checks if a block is defined.
     *
     * @param string $name    The block name
     * @param array  $context An array of parameters to pass to the template
     */
/home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/timber/timber/lib/Loader.php
 
        $key = null;
        $output = false;
        if ( false !== $expires ) {
            ksort($data);
            $key = md5($file.json_encode($data));
            $output = $this->get_cache($key, self::CACHEGROUP, $cache_mode);
        }
 
        if ( false === $output || null === $output ) {
            $twig = $this->get_twig();
            if ( strlen($file) ) {
                $loader = $this->get_loader();
                $result = $loader->getCacheKey($file);
                do_action('timber_loader_render_file', $result);
            }
            $data = apply_filters('timber_loader_render_data', $data);
            $data = apply_filters('timber/loader/render_data', $data, $file);
            $template = $twig->load($file);
            $output = $template->render($data);
        }
 
        if ( false !== $output && false !== $expires && null !== $key ) {
            $this->delete_cache();
            $this->set_cache($key, $output, self::CACHEGROUP, $expires, $cache_mode);
        }
        $output = apply_filters('timber_output', $output);
        return apply_filters('timber/output', $output, $data, $file);
    }
 
    protected function delete_cache() {
        Cleaner::delete_transients();
    }
 
    /**
     * Get first existing template.
     *
     * @param array|string $templates  Name(s) of the Twig template(s) to choose from.
     * @return string|bool             Name of chosen template, otherwise false.
     */
/home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/timber/timber/lib/Timber.php
        if ( $via_render ) {
            $file = apply_filters('timber_render_file', $file);
        } else {
            $file = apply_filters('timber_compile_file', $file);
        }
 
        $output = false;
 
        if ($file !== false) {
            if ( is_null($data) ) {
                $data = array();
            }
 
            if ( $via_render ) {
                $data = apply_filters('timber_render_data', $data);
            } else {
                $data = apply_filters('timber_compile_data', $data);
            }
 
            $output = $loader->render($file, $data, $expires, $cache_mode);
        } else {
            if ( is_array($filenames) ) {
                $filenames = implode(", ", $filenames);
            }
            Helper::error_log( 'Error loading your template files: '.$filenames.'. Make sure one of these files exists.' );
        }
 
        do_action('timber_compile_done');
        return $output;
    }
 
    /**
     * Compile a string.
     *
     * @api
     * @example
     * ```php
     * $data = array(
     *     'username' => 'Jane Doe',
     * );
/home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/timber/timber/lib/Timber.php
        $twig = $dummy_loader->get_twig();
        $template = $twig->createTemplate($string);
        return $template->render($data);
    }
 
    /**
     * Fetch function.
     *
     * @api
     * @param array|string $filenames  Name of the Twig file to render. If this is an array of files, Timber will
     *                                 render the first file that exists.
     * @param array        $data       Optional. An array of data to use in Twig template.
     * @param bool|int     $expires    Optional. In seconds. Use false to disable cache altogether. When passed an
     *                                 array, the first value is used for non-logged in visitors, the second for users.
     *                                 Default false.
     * @param string       $cache_mode Optional. Any of the cache mode constants defined in TimberLoader.
     * @return bool|string The returned output.
     */
    public static function fetch( $filenames, $data = array(), $expires = false, $cache_mode = Loader::CACHE_USE_DEFAULT ) {
        $output = self::compile($filenames, $data, $expires, $cache_mode, true);
        $output = apply_filters('timber_compile_result', $output);
        return $output;
    }
 
    /**
     * Render function.
     *
     * Passes data to a Twig file and echoes the output.
     *
     * @api
     * @example
     * ```php
     * $context = Timber::context();
     *
     * Timber::render( 'index.twig', $context );
     * ```
     * @param array|string $filenames  Name of the Twig file to render. If this is an array of files, Timber will
     *                                 render the first file that exists.
     * @param array        $data       Optional. An array of data to use in Twig template.
     * @param bool|int     $expires    Optional. In seconds. Use false to disable cache altogether. When passed an
/home/sc2xegu4502/public_html/web/app/mu-plugins/ariane/vendor/timber/timber/lib/Timber.php
     * Passes data to a Twig file and echoes the output.
     *
     * @api
     * @example
     * ```php
     * $context = Timber::context();
     *
     * Timber::render( 'index.twig', $context );
     * ```
     * @param array|string $filenames  Name of the Twig file to render. If this is an array of files, Timber will
     *                                 render the first file that exists.
     * @param array        $data       Optional. An array of data to use in Twig template.
     * @param bool|int     $expires    Optional. In seconds. Use false to disable cache altogether. When passed an
     *                                 array, the first value is used for non-logged in visitors, the second for users.
     *                                 Default false.
     * @param string       $cache_mode Optional. Any of the cache mode constants defined in TimberLoader.
     * @return bool|string The echoed output.
     */
    public static function render( $filenames, $data = array(), $expires = false, $cache_mode = Loader::CACHE_USE_DEFAULT ) {
        $output = self::fetch($filenames, $data, $expires, $cache_mode);
        echo $output;
        return $output;
    }
 
    /**
     * Render a string with Twig variables.
     *
     * @api
     * @example
     * ```php
     * $data = array(
     *     'username' => 'Jane Doe',
     * );
     *
     * Timber::render_string( 'Hi {{ username }}, I’m a string with a custom Twig variable', $data );
     * ```
     * @param string $string A string with Twig variables.
     * @param array  $data   An array of data to use in Twig template.
     * @return bool|string
     */
/home/sc2xegu4502/public_html/web/app/themes/ariane_theme/single.php
    
    $args = array(
        'post_type' => 'post',
        'posts_per_page' => 3,
        'category__and' => $post_term ,
        'post__not_in' => array($post_id),
        'orderby' => array(
                'date' => 'DESC'
    ));
    
    $context['related'] = Timber::get_posts( $args );
 
}
 
 
 
if ( post_password_required( $timber_post->ID ) ) {
    Timber::render( 'single-password.twig', $context );
} else if ($timber_post->post_type === 'job_listing'){
    Timber::render( 'jobs/single.twig', $context );
} else {
    Timber::render( array( 'pages/single-' . $timber_post->ID . '.twig', 'pages/single-' . $timber_post->post_type . '.twig', 'pages/single-' . $timber_post->slug . '.twig', 'pages/single.twig' ), $context );
}
 
/home/sc2xegu4502/public_html/web/wp/wp-includes/template-loader.php
     */
    $template   = apply_filters( 'template_include', $template );
    $is_stringy = is_string( $template ) || ( is_object( $template ) && method_exists( $template, '__toString' ) );
    $template   = $is_stringy ? realpath( (string) $template ) : null;
    if (
        is_string( $template ) &&
        ( str_ends_with( $template, '.php' ) || str_ends_with( $template, '.html' ) ) &&
        is_file( $template ) &&
        is_readable( $template )
    ) {
        /**
         * Fires immediately before including the template.
         *
         * @since 6.9.0
         *
         * @param string $template The path of the template about to be included.
         */
        do_action( 'wp_before_include_template', $template );
 
        include $template;
    } elseif ( current_user_can( 'switch_themes' ) ) {
        $theme = wp_get_theme();
        if ( $theme->errors() ) {
            wp_die( $theme->errors() );
        }
    }
    return;
}
 
/home/sc2xegu4502/public_html/web/wp/wp-blog-header.php
<?php
/**
 * Loads the WordPress environment and template.
 *
 * @package WordPress
 */
 
if ( ! isset( $wp_did_header ) ) {
 
    $wp_did_header = true;
 
    // Load the WordPress library.
    require_once __DIR__ . '/wp-load.php';
 
    // Set up the WordPress query.
    wp();
 
    // Load the theme template.
    require_once ABSPATH . WPINC . '/template-loader.php';
 
}
 
/home/sc2xegu4502/public_html/web/index.php
<?php
/**
 * WordPress View Bootstrapper
 */
define('WP_USE_THEMES', true);
require __DIR__ . '/wp/wp-blog-header.php';
 

Environment & details:

empty
empty
empty
Key Value
wp-wpml_current_language nl
empty
Key Value
SERVER_SOFTWARE Apache
REQUEST_URI /nl/job/directeur-de-travaux-bruxelles/
PATH /usr/local/bin:/usr/bin:/bin
TEMP /tmp
TMP /tmp
TMPDIR /tmp
PWD /
LSCAPI_CRIU_SYNC_FD 7
HTTP_ACCEPT text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
HTTP_ACCEPT_LANGUAGE en-US,en;q=0.5
CONTENT_LENGTH 0
HTTP_HOST www.yourkingsley.com
HTTP_USER_AGENT CCBot/2.0 (https://commoncrawl.org/faq/)
HTTP_X_COUNTRY_CODE US
HTTP_X_AUTONOMOUS_SYSTEM 14618
HTTP_X_REAL_IP 18.97.14.83
HTTP_X_FORWARDED_PROTO https
HTTP_X_FORWARDED_PORT 443
HTTP_X_SSL yes
HTTP_X_HTTPS 1
REDIRECT_UNIQUE_ID af_vJh4kJwebndg6giXJdwAAAQE
REDIRECT_SCRIPT_URL /nl/job/directeur-de-travaux-bruxelles/
REDIRECT_SCRIPT_URI https://www.yourkingsley.com/nl/job/directeur-de-travaux-bruxelles/
REDIRECT_W3TC_QUERY_STRING
REDIRECT_W3TC_SSL _ssl
REDIRECT_W3TC_SLASH _slash
REDIRECT_HTTP_AUTHORIZATION
REDIRECT_HTTPS on
REDIRECT_SSL_TLS_SNI www.yourkingsley.com
REDIRECT_STATUS 200
UNIQUE_ID af_vJh4kJwebndg6giXJdwAAAQE
SCRIPT_URL /nl/job/directeur-de-travaux-bruxelles/
SCRIPT_URI https://www.yourkingsley.com/nl/job/directeur-de-travaux-bruxelles/
W3TC_QUERY_STRING
W3TC_SSL _ssl
HTTP_AUTHORIZATION
HTTPS on
SSL_TLS_SNI www.yourkingsley.com
SERVER_SIGNATURE
SERVER_NAME www.yourkingsley.com
SERVER_ADDR 109.234.166.130
SERVER_PORT 443
REMOTE_ADDR 18.97.14.83
DOCUMENT_ROOT /home/sc2xegu4502/www/web
REQUEST_SCHEME https
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /home/sc2xegu4502/www/web
SERVER_ADMIN webmaster@wwwyourkingsley.sc2xegu4502.universe.wf
SCRIPT_FILENAME /home/sc2xegu4502/www/web/index.php
REMOTE_PORT 55384
REDIRECT_URL /nl/job/directeur-de-travaux-bruxelles/
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
SCRIPT_NAME /index.php
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1778380582.5287
REQUEST_TIME 1778380582
WP_ENV production
WP_HOME https://www.yourkingsley.com
WP_SITEURL https://www.yourkingsley.com/wp
DB_NAME sc2xegu4502_kingsley
DB_USER sc2xegu4502_kingsley
DB_PASSWORD bSVgwKsouT0=
DB_HOST localhost
AUTH_KEY o{AZ|A;7}Yd*M\"Kk0.1q|15<H&2|gh:N{,S;N19oMN+XT?b&a6)&[XjSa%.&,#M4
SECURE_AUTH_KEY rRY-jql&`3wN\"(xlnUH23e@]*Hcq[EBUrKs4:x[YEt!(;4\"~%&b]zkI]TIp=bmkj
LOGGED_IN_KEY vfH}-J!0nuABFwP;C`=C8!~j66eJ./xdiktb@4b7|nc:he3V=Gc.Pj4*/%agBR!s
NONCE_KEY uYpOd]3D>b1&Y3L5lk`8cn)iM:.+~2\")+ER-WqMIOk);#!GR&l0)ax?2I]_\"tBO&
AUTH_SALT zJi3wRi5LY?{D_*p[(y)*OAJ&\"?I9L%Mseb$LfADQ*<R`;m4&7c,=F1bHgS{1b*V
SECURE_AUTH_SALT )f>rWo`A:1{K6j`\"VzRhd~Z=Osux!ko?6ucIV91?@iIz9|R`tJ(m%;D06;q=xWS4
LOGGED_IN_SALT zn>*-26QF3>g$_c*`}1QkZLLny9)r_0xEsf!bPOn7/HIsaT`UGLo)VW+|*?LTMo_
NONCE_SALT o(SIO=g[?}95]IA2]BjhFl-x<,/(sH$EAYr`|bLF2nOkI;#q[4:ZaT;($z^q!)e$
Key Value
WP_ENV production
WP_HOME https://www.yourkingsley.com
WP_SITEURL https://www.yourkingsley.com/wp
DB_NAME sc2xegu4502_kingsley
DB_USER sc2xegu4502_kingsley
DB_PASSWORD bSVgwKsouT0=
DB_HOST localhost
AUTH_KEY o{AZ|A;7}Yd*M"Kk0.1q|15<H&2|gh:N{,S;N19oMN+XT?b&a6)&[XjSa%.&,#M4
SECURE_AUTH_KEY rRY-jql&`3wN"(xlnUH23e@]*Hcq[EBUrKs4:x[YEt!(;4"~%&b]zkI]TIp=bmkj
LOGGED_IN_KEY vfH}-J!0nuABFwP;C`=C8!~j66eJ./xdiktb@4b7|nc:he3V=Gc.Pj4*/%agBR!s
NONCE_KEY uYpOd]3D>b1&Y3L5lk`8cn)iM:.+~2")+ER-WqMIOk);#!GR&l0)ax?2I]_"tBO&
AUTH_SALT zJi3wRi5LY?{D_*p[(y)*OAJ&"?I9L%Mseb$LfADQ*<R`;m4&7c,=F1bHgS{1b*V
SECURE_AUTH_SALT )f>rWo`A:1{K6j`"VzRhd~Z=Osux!ko?6ucIV91?@iIz9|R`tJ(m%;D06;q=xWS4
LOGGED_IN_SALT zn>*-26QF3>g$_c*`}1QkZLLny9)r_0xEsf!bPOn7/HIsaT`UGLo)VW+|*?LTMo_
NONCE_SALT o(SIO=g[?}95]IA2]BjhFl-x<,/(sH$EAYr`|bLF2nOkI;#q[4:ZaT;($z^q!)e$
0. Whoops\Handler\PrettyPageHandler