Heray-Was-Here
Server : Apache
System : Linux hybrid3195.ca.ns.planethoster.net 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 UTC 2025 x86_64
User : alliancerealtynb ( 1004)
PHP Version : 7.4.33
Disable Function : noop
Directory :  /home/alliancerealtynb/dev.alliancerealty.nb.ca/adminAR/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/alliancerealtynb/dev.alliancerealty.nb.ca/adminAR/wp_wpl_propertieslist.php
<?php
namespace PHPMaker2020\Alliance;

// Autoload
include_once "autoload.php";

// Session
if (session_status() !== PHP_SESSION_ACTIVE)
	\Delight\Cookie\Session::start(Config("COOKIE_SAMESITE")); // Init session data

// Output buffering
ob_start();
?>
<?php

// Write header
WriteHeader(FALSE);

// Create page object
$wp_wpl_properties_list = new wp_wpl_properties_list();

// Run the page
$wp_wpl_properties_list->run();

// Setup login status
SetupLoginStatus();
SetClientVar("login", LoginStatus());

// Global Page Rendering event (in userfn*.php)
Page_Rendering();

// Page Rendering event
$wp_wpl_properties_list->Page_Render();
?>
<?php include_once "header.php"; ?>
<?php if (!$wp_wpl_properties_list->isExport()) { ?>
<script>
var fwp_wpl_propertieslist, currentPageID;
loadjs.ready("head", function() {

	// Form object
	currentPageID = ew.PAGE_ID = "list";
	fwp_wpl_propertieslist = currentForm = new ew.Form("fwp_wpl_propertieslist", "list");
	fwp_wpl_propertieslist.formKeyCountName = '<?php echo $wp_wpl_properties_list->FormKeyCountName ?>';
	loadjs.done("fwp_wpl_propertieslist");
});
var fwp_wpl_propertieslistsrch;
loadjs.ready("head", function() {

	// Form object for search
	fwp_wpl_propertieslistsrch = currentSearchForm = new ew.Form("fwp_wpl_propertieslistsrch");

	// Dynamic selection lists
	// Filters

	fwp_wpl_propertieslistsrch.filterList = <?php echo $wp_wpl_properties_list->getFilterList() ?>;
	loadjs.done("fwp_wpl_propertieslistsrch");
});
</script>
<script>
loadjs.ready("head", function() {

	// Client script
	// Write your client script here, no need to add script tags.

});
</script>
<?php } ?>
<?php if (!$wp_wpl_properties_list->isExport()) { ?>
<div class="btn-toolbar ew-toolbar">
<?php if ($wp_wpl_properties_list->TotalRecords > 0 && $wp_wpl_properties_list->ExportOptions->visible()) { ?>
<?php $wp_wpl_properties_list->ExportOptions->render("body") ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->ImportOptions->visible()) { ?>
<?php $wp_wpl_properties_list->ImportOptions->render("body") ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->SearchOptions->visible()) { ?>
<?php $wp_wpl_properties_list->SearchOptions->render("body") ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->FilterOptions->visible()) { ?>
<?php $wp_wpl_properties_list->FilterOptions->render("body") ?>
<?php } ?>
<div class="clearfix"></div>
</div>
<?php } ?>
<?php
$wp_wpl_properties_list->renderOtherOptions();
?>
<?php if ($Security->CanSearch()) { ?>
<?php if (!$wp_wpl_properties_list->isExport() && !$wp_wpl_properties->CurrentAction) { ?>
<form name="fwp_wpl_propertieslistsrch" id="fwp_wpl_propertieslistsrch" class="form-inline ew-form ew-ext-search-form" action="<?php echo CurrentPageName() ?>">
<div id="fwp_wpl_propertieslistsrch-search-panel" class="<?php echo $wp_wpl_properties_list->SearchPanelClass ?>">
<input type="hidden" name="cmd" value="search">
<input type="hidden" name="t" value="wp_wpl_properties">
	<div class="ew-extended-search">
<div id="xsr_<?php echo $wp_wpl_properties_list->SearchRowCount + 1 ?>" class="ew-row d-sm-flex">
	<div class="ew-quick-search input-group">
		<input type="text" name="<?php echo Config("TABLE_BASIC_SEARCH") ?>" id="<?php echo Config("TABLE_BASIC_SEARCH") ?>" class="form-control" value="<?php echo HtmlEncode($wp_wpl_properties_list->BasicSearch->getKeyword()) ?>" placeholder="<?php echo HtmlEncode($Language->phrase("Search")) ?>">
		<input type="hidden" name="<?php echo Config("TABLE_BASIC_SEARCH_TYPE") ?>" id="<?php echo Config("TABLE_BASIC_SEARCH_TYPE") ?>" value="<?php echo HtmlEncode($wp_wpl_properties_list->BasicSearch->getType()) ?>">
		<div class="input-group-append">
			<button class="btn btn-primary" name="btn-submit" id="btn-submit" type="submit"><?php echo $Language->phrase("SearchBtn") ?></button>
			<button type="button" data-toggle="dropdown" class="btn btn-primary dropdown-toggle dropdown-toggle-split" aria-haspopup="true" aria-expanded="false"><span id="searchtype"><?php echo $wp_wpl_properties_list->BasicSearch->getTypeNameShort() ?></span></button>
			<div class="dropdown-menu dropdown-menu-right">
				<a class="dropdown-item<?php if ($wp_wpl_properties_list->BasicSearch->getType() == "") { ?> active<?php } ?>" href="#" onclick="return ew.setSearchType(this);"><?php echo $Language->phrase("QuickSearchAuto") ?></a>
				<a class="dropdown-item<?php if ($wp_wpl_properties_list->BasicSearch->getType() == "=") { ?> active<?php } ?>" href="#" onclick="return ew.setSearchType(this, '=');"><?php echo $Language->phrase("QuickSearchExact") ?></a>
				<a class="dropdown-item<?php if ($wp_wpl_properties_list->BasicSearch->getType() == "AND") { ?> active<?php } ?>" href="#" onclick="return ew.setSearchType(this, 'AND');"><?php echo $Language->phrase("QuickSearchAll") ?></a>
				<a class="dropdown-item<?php if ($wp_wpl_properties_list->BasicSearch->getType() == "OR") { ?> active<?php } ?>" href="#" onclick="return ew.setSearchType(this, 'OR');"><?php echo $Language->phrase("QuickSearchAny") ?></a>
			</div>
		</div>
	</div>
</div>
	</div><!-- /.ew-extended-search -->
</div><!-- /.ew-search-panel -->
</form>
<?php } ?>
<?php } ?>
<?php $wp_wpl_properties_list->showPageHeader(); ?>
<?php
$wp_wpl_properties_list->showMessage();
?>
<?php if ($wp_wpl_properties_list->TotalRecords > 0 || $wp_wpl_properties->CurrentAction) { ?>
<div class="card ew-card ew-grid<?php if ($wp_wpl_properties_list->isAddOrEdit()) { ?> ew-grid-add-edit<?php } ?> wp_wpl_properties">
<?php if (!$wp_wpl_properties_list->isExport()) { ?>
<div class="card-header ew-grid-upper-panel">
<?php if (!$wp_wpl_properties_list->isGridAdd()) { ?>
<form name="ew-pager-form" class="form-inline ew-form ew-pager-form" action="<?php echo CurrentPageName() ?>">
<?php echo $wp_wpl_properties_list->Pager->render() ?>
</form>
<?php } ?>
<div class="ew-list-other-options">
<?php $wp_wpl_properties_list->OtherOptions->render("body") ?>
</div>
<div class="clearfix"></div>
</div>
<?php } ?>
<form name="fwp_wpl_propertieslist" id="fwp_wpl_propertieslist" class="form-inline ew-form ew-list-form" action="<?php echo CurrentPageName() ?>" method="post">
<?php if ($Page->CheckToken) { ?>
<input type="hidden" name="<?php echo Config("TOKEN_NAME") ?>" value="<?php echo $Page->Token ?>">
<?php } ?>
<input type="hidden" name="t" value="wp_wpl_properties">
<div id="gmp_wp_wpl_properties" class="<?php echo ResponsiveTableClass() ?>card-body ew-grid-middle-panel">
<?php if ($wp_wpl_properties_list->TotalRecords > 0 || $wp_wpl_properties_list->isGridEdit()) { ?>
<table id="tbl_wp_wpl_propertieslist" class="table ew-table"><!-- .ew-table -->
<thead>
	<tr class="ew-table-header">
<?php

// Header row
$wp_wpl_properties->RowType = ROWTYPE_HEADER;

// Render list options
$wp_wpl_properties_list->renderListOptions();

// Render list options (header, left)
$wp_wpl_properties_list->ListOptions->render("header", "left");
?>
<?php if ($wp_wpl_properties_list->id->Visible) { // id ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->id) == "") { ?>
		<th data-name="id" class="<?php echo $wp_wpl_properties_list->id->headerCellClass() ?>"><div id="elh_wp_wpl_properties_id" class="wp_wpl_properties_id"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->id->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="id" class="<?php echo $wp_wpl_properties_list->id->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->id) ?>', 1);"><div id="elh_wp_wpl_properties_id" class="wp_wpl_properties_id">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->id->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->id->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->id->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->kind->Visible) { // kind ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->kind) == "") { ?>
		<th data-name="kind" class="<?php echo $wp_wpl_properties_list->kind->headerCellClass() ?>"><div id="elh_wp_wpl_properties_kind" class="wp_wpl_properties_kind"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->kind->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="kind" class="<?php echo $wp_wpl_properties_list->kind->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->kind) ?>', 1);"><div id="elh_wp_wpl_properties_kind" class="wp_wpl_properties_kind">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->kind->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->kind->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->kind->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->deleted->Visible) { // deleted ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->deleted) == "") { ?>
		<th data-name="deleted" class="<?php echo $wp_wpl_properties_list->deleted->headerCellClass() ?>"><div id="elh_wp_wpl_properties_deleted" class="wp_wpl_properties_deleted"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->deleted->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="deleted" class="<?php echo $wp_wpl_properties_list->deleted->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->deleted) ?>', 1);"><div id="elh_wp_wpl_properties_deleted" class="wp_wpl_properties_deleted">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->deleted->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->deleted->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->deleted->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->mls_id->Visible) { // mls_id ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->mls_id) == "") { ?>
		<th data-name="mls_id" class="<?php echo $wp_wpl_properties_list->mls_id->headerCellClass() ?>"><div id="elh_wp_wpl_properties_mls_id" class="wp_wpl_properties_mls_id"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->mls_id->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="mls_id" class="<?php echo $wp_wpl_properties_list->mls_id->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->mls_id) ?>', 1);"><div id="elh_wp_wpl_properties_mls_id" class="wp_wpl_properties_mls_id">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->mls_id->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->mls_id->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->mls_id->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->mls_id_num->Visible) { // mls_id_num ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->mls_id_num) == "") { ?>
		<th data-name="mls_id_num" class="<?php echo $wp_wpl_properties_list->mls_id_num->headerCellClass() ?>"><div id="elh_wp_wpl_properties_mls_id_num" class="wp_wpl_properties_mls_id_num"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->mls_id_num->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="mls_id_num" class="<?php echo $wp_wpl_properties_list->mls_id_num->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->mls_id_num) ?>', 1);"><div id="elh_wp_wpl_properties_mls_id_num" class="wp_wpl_properties_mls_id_num">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->mls_id_num->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->mls_id_num->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->mls_id_num->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->parent->Visible) { // parent ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->parent) == "") { ?>
		<th data-name="parent" class="<?php echo $wp_wpl_properties_list->parent->headerCellClass() ?>"><div id="elh_wp_wpl_properties_parent" class="wp_wpl_properties_parent"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->parent->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="parent" class="<?php echo $wp_wpl_properties_list->parent->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->parent) ?>', 1);"><div id="elh_wp_wpl_properties_parent" class="wp_wpl_properties_parent">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->parent->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->parent->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->parent->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->pic_numb->Visible) { // pic_numb ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->pic_numb) == "") { ?>
		<th data-name="pic_numb" class="<?php echo $wp_wpl_properties_list->pic_numb->headerCellClass() ?>"><div id="elh_wp_wpl_properties_pic_numb" class="wp_wpl_properties_pic_numb"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->pic_numb->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="pic_numb" class="<?php echo $wp_wpl_properties_list->pic_numb->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->pic_numb) ?>', 1);"><div id="elh_wp_wpl_properties_pic_numb" class="wp_wpl_properties_pic_numb">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->pic_numb->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->pic_numb->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->pic_numb->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->user_id->Visible) { // user_id ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->user_id) == "") { ?>
		<th data-name="user_id" class="<?php echo $wp_wpl_properties_list->user_id->headerCellClass() ?>"><div id="elh_wp_wpl_properties_user_id" class="wp_wpl_properties_user_id"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->user_id->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="user_id" class="<?php echo $wp_wpl_properties_list->user_id->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->user_id) ?>', 1);"><div id="elh_wp_wpl_properties_user_id" class="wp_wpl_properties_user_id">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->user_id->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->user_id->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->user_id->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->listing->Visible) { // listing ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->listing) == "") { ?>
		<th data-name="listing" class="<?php echo $wp_wpl_properties_list->listing->headerCellClass() ?>"><div id="elh_wp_wpl_properties_listing" class="wp_wpl_properties_listing"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->listing->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="listing" class="<?php echo $wp_wpl_properties_list->listing->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->listing) ?>', 1);"><div id="elh_wp_wpl_properties_listing" class="wp_wpl_properties_listing">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->listing->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->listing->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->listing->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->property_type->Visible) { // property_type ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->property_type) == "") { ?>
		<th data-name="property_type" class="<?php echo $wp_wpl_properties_list->property_type->headerCellClass() ?>"><div id="elh_wp_wpl_properties_property_type" class="wp_wpl_properties_property_type"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->property_type->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="property_type" class="<?php echo $wp_wpl_properties_list->property_type->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->property_type) ?>', 1);"><div id="elh_wp_wpl_properties_property_type" class="wp_wpl_properties_property_type">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->property_type->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->property_type->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->property_type->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->location1_id->Visible) { // location1_id ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location1_id) == "") { ?>
		<th data-name="location1_id" class="<?php echo $wp_wpl_properties_list->location1_id->headerCellClass() ?>"><div id="elh_wp_wpl_properties_location1_id" class="wp_wpl_properties_location1_id"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location1_id->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="location1_id" class="<?php echo $wp_wpl_properties_list->location1_id->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location1_id) ?>', 1);"><div id="elh_wp_wpl_properties_location1_id" class="wp_wpl_properties_location1_id">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location1_id->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->location1_id->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->location1_id->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->location2_id->Visible) { // location2_id ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location2_id) == "") { ?>
		<th data-name="location2_id" class="<?php echo $wp_wpl_properties_list->location2_id->headerCellClass() ?>"><div id="elh_wp_wpl_properties_location2_id" class="wp_wpl_properties_location2_id"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location2_id->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="location2_id" class="<?php echo $wp_wpl_properties_list->location2_id->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location2_id) ?>', 1);"><div id="elh_wp_wpl_properties_location2_id" class="wp_wpl_properties_location2_id">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location2_id->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->location2_id->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->location2_id->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->location3_id->Visible) { // location3_id ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location3_id) == "") { ?>
		<th data-name="location3_id" class="<?php echo $wp_wpl_properties_list->location3_id->headerCellClass() ?>"><div id="elh_wp_wpl_properties_location3_id" class="wp_wpl_properties_location3_id"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location3_id->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="location3_id" class="<?php echo $wp_wpl_properties_list->location3_id->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location3_id) ?>', 1);"><div id="elh_wp_wpl_properties_location3_id" class="wp_wpl_properties_location3_id">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location3_id->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->location3_id->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->location3_id->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->location4_id->Visible) { // location4_id ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location4_id) == "") { ?>
		<th data-name="location4_id" class="<?php echo $wp_wpl_properties_list->location4_id->headerCellClass() ?>"><div id="elh_wp_wpl_properties_location4_id" class="wp_wpl_properties_location4_id"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location4_id->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="location4_id" class="<?php echo $wp_wpl_properties_list->location4_id->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location4_id) ?>', 1);"><div id="elh_wp_wpl_properties_location4_id" class="wp_wpl_properties_location4_id">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location4_id->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->location4_id->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->location4_id->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->location5_id->Visible) { // location5_id ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location5_id) == "") { ?>
		<th data-name="location5_id" class="<?php echo $wp_wpl_properties_list->location5_id->headerCellClass() ?>"><div id="elh_wp_wpl_properties_location5_id" class="wp_wpl_properties_location5_id"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location5_id->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="location5_id" class="<?php echo $wp_wpl_properties_list->location5_id->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location5_id) ?>', 1);"><div id="elh_wp_wpl_properties_location5_id" class="wp_wpl_properties_location5_id">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location5_id->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->location5_id->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->location5_id->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->location6_id->Visible) { // location6_id ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location6_id) == "") { ?>
		<th data-name="location6_id" class="<?php echo $wp_wpl_properties_list->location6_id->headerCellClass() ?>"><div id="elh_wp_wpl_properties_location6_id" class="wp_wpl_properties_location6_id"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location6_id->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="location6_id" class="<?php echo $wp_wpl_properties_list->location6_id->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location6_id) ?>', 1);"><div id="elh_wp_wpl_properties_location6_id" class="wp_wpl_properties_location6_id">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location6_id->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->location6_id->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->location6_id->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->location7_id->Visible) { // location7_id ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location7_id) == "") { ?>
		<th data-name="location7_id" class="<?php echo $wp_wpl_properties_list->location7_id->headerCellClass() ?>"><div id="elh_wp_wpl_properties_location7_id" class="wp_wpl_properties_location7_id"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location7_id->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="location7_id" class="<?php echo $wp_wpl_properties_list->location7_id->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location7_id) ?>', 1);"><div id="elh_wp_wpl_properties_location7_id" class="wp_wpl_properties_location7_id">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location7_id->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->location7_id->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->location7_id->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->location1_name->Visible) { // location1_name ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location1_name) == "") { ?>
		<th data-name="location1_name" class="<?php echo $wp_wpl_properties_list->location1_name->headerCellClass() ?>"><div id="elh_wp_wpl_properties_location1_name" class="wp_wpl_properties_location1_name"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location1_name->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="location1_name" class="<?php echo $wp_wpl_properties_list->location1_name->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location1_name) ?>', 1);"><div id="elh_wp_wpl_properties_location1_name" class="wp_wpl_properties_location1_name">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location1_name->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->location1_name->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->location1_name->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->location2_name->Visible) { // location2_name ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location2_name) == "") { ?>
		<th data-name="location2_name" class="<?php echo $wp_wpl_properties_list->location2_name->headerCellClass() ?>"><div id="elh_wp_wpl_properties_location2_name" class="wp_wpl_properties_location2_name"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location2_name->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="location2_name" class="<?php echo $wp_wpl_properties_list->location2_name->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location2_name) ?>', 1);"><div id="elh_wp_wpl_properties_location2_name" class="wp_wpl_properties_location2_name">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location2_name->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->location2_name->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->location2_name->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->location3_name->Visible) { // location3_name ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location3_name) == "") { ?>
		<th data-name="location3_name" class="<?php echo $wp_wpl_properties_list->location3_name->headerCellClass() ?>"><div id="elh_wp_wpl_properties_location3_name" class="wp_wpl_properties_location3_name"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location3_name->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="location3_name" class="<?php echo $wp_wpl_properties_list->location3_name->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location3_name) ?>', 1);"><div id="elh_wp_wpl_properties_location3_name" class="wp_wpl_properties_location3_name">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location3_name->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->location3_name->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->location3_name->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->location4_name->Visible) { // location4_name ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location4_name) == "") { ?>
		<th data-name="location4_name" class="<?php echo $wp_wpl_properties_list->location4_name->headerCellClass() ?>"><div id="elh_wp_wpl_properties_location4_name" class="wp_wpl_properties_location4_name"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location4_name->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="location4_name" class="<?php echo $wp_wpl_properties_list->location4_name->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location4_name) ?>', 1);"><div id="elh_wp_wpl_properties_location4_name" class="wp_wpl_properties_location4_name">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location4_name->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->location4_name->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->location4_name->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->location5_name->Visible) { // location5_name ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location5_name) == "") { ?>
		<th data-name="location5_name" class="<?php echo $wp_wpl_properties_list->location5_name->headerCellClass() ?>"><div id="elh_wp_wpl_properties_location5_name" class="wp_wpl_properties_location5_name"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location5_name->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="location5_name" class="<?php echo $wp_wpl_properties_list->location5_name->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location5_name) ?>', 1);"><div id="elh_wp_wpl_properties_location5_name" class="wp_wpl_properties_location5_name">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location5_name->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->location5_name->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->location5_name->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->location6_name->Visible) { // location6_name ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location6_name) == "") { ?>
		<th data-name="location6_name" class="<?php echo $wp_wpl_properties_list->location6_name->headerCellClass() ?>"><div id="elh_wp_wpl_properties_location6_name" class="wp_wpl_properties_location6_name"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location6_name->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="location6_name" class="<?php echo $wp_wpl_properties_list->location6_name->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location6_name) ?>', 1);"><div id="elh_wp_wpl_properties_location6_name" class="wp_wpl_properties_location6_name">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location6_name->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->location6_name->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->location6_name->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->location7_name->Visible) { // location7_name ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location7_name) == "") { ?>
		<th data-name="location7_name" class="<?php echo $wp_wpl_properties_list->location7_name->headerCellClass() ?>"><div id="elh_wp_wpl_properties_location7_name" class="wp_wpl_properties_location7_name"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location7_name->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="location7_name" class="<?php echo $wp_wpl_properties_list->location7_name->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location7_name) ?>', 1);"><div id="elh_wp_wpl_properties_location7_name" class="wp_wpl_properties_location7_name">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location7_name->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->location7_name->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->location7_name->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->show_address->Visible) { // show_address ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->show_address) == "") { ?>
		<th data-name="show_address" class="<?php echo $wp_wpl_properties_list->show_address->headerCellClass() ?>"><div id="elh_wp_wpl_properties_show_address" class="wp_wpl_properties_show_address"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->show_address->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="show_address" class="<?php echo $wp_wpl_properties_list->show_address->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->show_address) ?>', 1);"><div id="elh_wp_wpl_properties_show_address" class="wp_wpl_properties_show_address">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->show_address->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->show_address->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->show_address->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->show_marker->Visible) { // show_marker ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->show_marker) == "") { ?>
		<th data-name="show_marker" class="<?php echo $wp_wpl_properties_list->show_marker->headerCellClass() ?>"><div id="elh_wp_wpl_properties_show_marker" class="wp_wpl_properties_show_marker"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->show_marker->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="show_marker" class="<?php echo $wp_wpl_properties_list->show_marker->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->show_marker) ?>', 1);"><div id="elh_wp_wpl_properties_show_marker" class="wp_wpl_properties_show_marker">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->show_marker->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->show_marker->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->show_marker->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->price->Visible) { // price ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->price) == "") { ?>
		<th data-name="price" class="<?php echo $wp_wpl_properties_list->price->headerCellClass() ?>"><div id="elh_wp_wpl_properties_price" class="wp_wpl_properties_price"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->price->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="price" class="<?php echo $wp_wpl_properties_list->price->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->price) ?>', 1);"><div id="elh_wp_wpl_properties_price" class="wp_wpl_properties_price">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->price->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->price->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->price->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->price_unit->Visible) { // price_unit ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->price_unit) == "") { ?>
		<th data-name="price_unit" class="<?php echo $wp_wpl_properties_list->price_unit->headerCellClass() ?>"><div id="elh_wp_wpl_properties_price_unit" class="wp_wpl_properties_price_unit"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->price_unit->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="price_unit" class="<?php echo $wp_wpl_properties_list->price_unit->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->price_unit) ?>', 1);"><div id="elh_wp_wpl_properties_price_unit" class="wp_wpl_properties_price_unit">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->price_unit->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->price_unit->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->price_unit->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->price_si->Visible) { // price_si ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->price_si) == "") { ?>
		<th data-name="price_si" class="<?php echo $wp_wpl_properties_list->price_si->headerCellClass() ?>"><div id="elh_wp_wpl_properties_price_si" class="wp_wpl_properties_price_si"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->price_si->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="price_si" class="<?php echo $wp_wpl_properties_list->price_si->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->price_si) ?>', 1);"><div id="elh_wp_wpl_properties_price_si" class="wp_wpl_properties_price_si">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->price_si->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->price_si->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->price_si->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->price_period->Visible) { // price_period ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->price_period) == "") { ?>
		<th data-name="price_period" class="<?php echo $wp_wpl_properties_list->price_period->headerCellClass() ?>"><div id="elh_wp_wpl_properties_price_period" class="wp_wpl_properties_price_period"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->price_period->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="price_period" class="<?php echo $wp_wpl_properties_list->price_period->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->price_period) ?>', 1);"><div id="elh_wp_wpl_properties_price_period" class="wp_wpl_properties_price_period">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->price_period->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->price_period->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->price_period->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->bedrooms->Visible) { // bedrooms ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->bedrooms) == "") { ?>
		<th data-name="bedrooms" class="<?php echo $wp_wpl_properties_list->bedrooms->headerCellClass() ?>"><div id="elh_wp_wpl_properties_bedrooms" class="wp_wpl_properties_bedrooms"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->bedrooms->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="bedrooms" class="<?php echo $wp_wpl_properties_list->bedrooms->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->bedrooms) ?>', 1);"><div id="elh_wp_wpl_properties_bedrooms" class="wp_wpl_properties_bedrooms">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->bedrooms->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->bedrooms->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->bedrooms->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->rooms->Visible) { // rooms ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->rooms) == "") { ?>
		<th data-name="rooms" class="<?php echo $wp_wpl_properties_list->rooms->headerCellClass() ?>"><div id="elh_wp_wpl_properties_rooms" class="wp_wpl_properties_rooms"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->rooms->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="rooms" class="<?php echo $wp_wpl_properties_list->rooms->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->rooms) ?>', 1);"><div id="elh_wp_wpl_properties_rooms" class="wp_wpl_properties_rooms">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->rooms->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->rooms->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->rooms->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->bathrooms->Visible) { // bathrooms ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->bathrooms) == "") { ?>
		<th data-name="bathrooms" class="<?php echo $wp_wpl_properties_list->bathrooms->headerCellClass() ?>"><div id="elh_wp_wpl_properties_bathrooms" class="wp_wpl_properties_bathrooms"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->bathrooms->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="bathrooms" class="<?php echo $wp_wpl_properties_list->bathrooms->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->bathrooms) ?>', 1);"><div id="elh_wp_wpl_properties_bathrooms" class="wp_wpl_properties_bathrooms">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->bathrooms->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->bathrooms->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->bathrooms->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->living_area->Visible) { // living_area ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->living_area) == "") { ?>
		<th data-name="living_area" class="<?php echo $wp_wpl_properties_list->living_area->headerCellClass() ?>"><div id="elh_wp_wpl_properties_living_area" class="wp_wpl_properties_living_area"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->living_area->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="living_area" class="<?php echo $wp_wpl_properties_list->living_area->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->living_area) ?>', 1);"><div id="elh_wp_wpl_properties_living_area" class="wp_wpl_properties_living_area">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->living_area->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->living_area->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->living_area->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->living_area_unit->Visible) { // living_area_unit ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->living_area_unit) == "") { ?>
		<th data-name="living_area_unit" class="<?php echo $wp_wpl_properties_list->living_area_unit->headerCellClass() ?>"><div id="elh_wp_wpl_properties_living_area_unit" class="wp_wpl_properties_living_area_unit"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->living_area_unit->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="living_area_unit" class="<?php echo $wp_wpl_properties_list->living_area_unit->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->living_area_unit) ?>', 1);"><div id="elh_wp_wpl_properties_living_area_unit" class="wp_wpl_properties_living_area_unit">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->living_area_unit->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->living_area_unit->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->living_area_unit->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->living_area_si->Visible) { // living_area_si ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->living_area_si) == "") { ?>
		<th data-name="living_area_si" class="<?php echo $wp_wpl_properties_list->living_area_si->headerCellClass() ?>"><div id="elh_wp_wpl_properties_living_area_si" class="wp_wpl_properties_living_area_si"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->living_area_si->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="living_area_si" class="<?php echo $wp_wpl_properties_list->living_area_si->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->living_area_si) ?>', 1);"><div id="elh_wp_wpl_properties_living_area_si" class="wp_wpl_properties_living_area_si">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->living_area_si->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->living_area_si->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->living_area_si->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->lot_area->Visible) { // lot_area ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->lot_area) == "") { ?>
		<th data-name="lot_area" class="<?php echo $wp_wpl_properties_list->lot_area->headerCellClass() ?>"><div id="elh_wp_wpl_properties_lot_area" class="wp_wpl_properties_lot_area"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->lot_area->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="lot_area" class="<?php echo $wp_wpl_properties_list->lot_area->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->lot_area) ?>', 1);"><div id="elh_wp_wpl_properties_lot_area" class="wp_wpl_properties_lot_area">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->lot_area->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->lot_area->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->lot_area->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->lot_area_unit->Visible) { // lot_area_unit ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->lot_area_unit) == "") { ?>
		<th data-name="lot_area_unit" class="<?php echo $wp_wpl_properties_list->lot_area_unit->headerCellClass() ?>"><div id="elh_wp_wpl_properties_lot_area_unit" class="wp_wpl_properties_lot_area_unit"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->lot_area_unit->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="lot_area_unit" class="<?php echo $wp_wpl_properties_list->lot_area_unit->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->lot_area_unit) ?>', 1);"><div id="elh_wp_wpl_properties_lot_area_unit" class="wp_wpl_properties_lot_area_unit">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->lot_area_unit->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->lot_area_unit->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->lot_area_unit->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->lot_area_si->Visible) { // lot_area_si ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->lot_area_si) == "") { ?>
		<th data-name="lot_area_si" class="<?php echo $wp_wpl_properties_list->lot_area_si->headerCellClass() ?>"><div id="elh_wp_wpl_properties_lot_area_si" class="wp_wpl_properties_lot_area_si"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->lot_area_si->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="lot_area_si" class="<?php echo $wp_wpl_properties_list->lot_area_si->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->lot_area_si) ?>', 1);"><div id="elh_wp_wpl_properties_lot_area_si" class="wp_wpl_properties_lot_area_si">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->lot_area_si->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->lot_area_si->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->lot_area_si->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->googlemap_lt->Visible) { // googlemap_lt ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->googlemap_lt) == "") { ?>
		<th data-name="googlemap_lt" class="<?php echo $wp_wpl_properties_list->googlemap_lt->headerCellClass() ?>"><div id="elh_wp_wpl_properties_googlemap_lt" class="wp_wpl_properties_googlemap_lt"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->googlemap_lt->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="googlemap_lt" class="<?php echo $wp_wpl_properties_list->googlemap_lt->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->googlemap_lt) ?>', 1);"><div id="elh_wp_wpl_properties_googlemap_lt" class="wp_wpl_properties_googlemap_lt">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->googlemap_lt->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->googlemap_lt->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->googlemap_lt->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->googlemap_ln->Visible) { // googlemap_ln ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->googlemap_ln) == "") { ?>
		<th data-name="googlemap_ln" class="<?php echo $wp_wpl_properties_list->googlemap_ln->headerCellClass() ?>"><div id="elh_wp_wpl_properties_googlemap_ln" class="wp_wpl_properties_googlemap_ln"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->googlemap_ln->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="googlemap_ln" class="<?php echo $wp_wpl_properties_list->googlemap_ln->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->googlemap_ln) ?>', 1);"><div id="elh_wp_wpl_properties_googlemap_ln" class="wp_wpl_properties_googlemap_ln">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->googlemap_ln->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->googlemap_ln->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->googlemap_ln->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->finalized->Visible) { // finalized ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->finalized) == "") { ?>
		<th data-name="finalized" class="<?php echo $wp_wpl_properties_list->finalized->headerCellClass() ?>"><div id="elh_wp_wpl_properties_finalized" class="wp_wpl_properties_finalized"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->finalized->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="finalized" class="<?php echo $wp_wpl_properties_list->finalized->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->finalized) ?>', 1);"><div id="elh_wp_wpl_properties_finalized" class="wp_wpl_properties_finalized">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->finalized->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->finalized->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->finalized->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->add_date->Visible) { // add_date ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->add_date) == "") { ?>
		<th data-name="add_date" class="<?php echo $wp_wpl_properties_list->add_date->headerCellClass() ?>"><div id="elh_wp_wpl_properties_add_date" class="wp_wpl_properties_add_date"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->add_date->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="add_date" class="<?php echo $wp_wpl_properties_list->add_date->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->add_date) ?>', 1);"><div id="elh_wp_wpl_properties_add_date" class="wp_wpl_properties_add_date">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->add_date->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->add_date->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->add_date->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->last_finalize_date->Visible) { // last_finalize_date ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->last_finalize_date) == "") { ?>
		<th data-name="last_finalize_date" class="<?php echo $wp_wpl_properties_list->last_finalize_date->headerCellClass() ?>"><div id="elh_wp_wpl_properties_last_finalize_date" class="wp_wpl_properties_last_finalize_date"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->last_finalize_date->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="last_finalize_date" class="<?php echo $wp_wpl_properties_list->last_finalize_date->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->last_finalize_date) ?>', 1);"><div id="elh_wp_wpl_properties_last_finalize_date" class="wp_wpl_properties_last_finalize_date">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->last_finalize_date->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->last_finalize_date->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->last_finalize_date->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->expire_days->Visible) { // expire_days ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->expire_days) == "") { ?>
		<th data-name="expire_days" class="<?php echo $wp_wpl_properties_list->expire_days->headerCellClass() ?>"><div id="elh_wp_wpl_properties_expire_days" class="wp_wpl_properties_expire_days"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->expire_days->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="expire_days" class="<?php echo $wp_wpl_properties_list->expire_days->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->expire_days) ?>', 1);"><div id="elh_wp_wpl_properties_expire_days" class="wp_wpl_properties_expire_days">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->expire_days->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->expire_days->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->expire_days->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->confirmed->Visible) { // confirmed ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->confirmed) == "") { ?>
		<th data-name="confirmed" class="<?php echo $wp_wpl_properties_list->confirmed->headerCellClass() ?>"><div id="elh_wp_wpl_properties_confirmed" class="wp_wpl_properties_confirmed"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->confirmed->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="confirmed" class="<?php echo $wp_wpl_properties_list->confirmed->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->confirmed) ?>', 1);"><div id="elh_wp_wpl_properties_confirmed" class="wp_wpl_properties_confirmed">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->confirmed->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->confirmed->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->confirmed->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->expired->Visible) { // expired ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->expired) == "") { ?>
		<th data-name="expired" class="<?php echo $wp_wpl_properties_list->expired->headerCellClass() ?>"><div id="elh_wp_wpl_properties_expired" class="wp_wpl_properties_expired"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->expired->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="expired" class="<?php echo $wp_wpl_properties_list->expired->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->expired) ?>', 1);"><div id="elh_wp_wpl_properties_expired" class="wp_wpl_properties_expired">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->expired->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->expired->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->expired->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->build_year->Visible) { // build_year ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->build_year) == "") { ?>
		<th data-name="build_year" class="<?php echo $wp_wpl_properties_list->build_year->headerCellClass() ?>"><div id="elh_wp_wpl_properties_build_year" class="wp_wpl_properties_build_year"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->build_year->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="build_year" class="<?php echo $wp_wpl_properties_list->build_year->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->build_year) ?>', 1);"><div id="elh_wp_wpl_properties_build_year" class="wp_wpl_properties_build_year">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->build_year->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->build_year->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->build_year->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->zip_id->Visible) { // zip_id ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->zip_id) == "") { ?>
		<th data-name="zip_id" class="<?php echo $wp_wpl_properties_list->zip_id->headerCellClass() ?>"><div id="elh_wp_wpl_properties_zip_id" class="wp_wpl_properties_zip_id"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->zip_id->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="zip_id" class="<?php echo $wp_wpl_properties_list->zip_id->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->zip_id) ?>', 1);"><div id="elh_wp_wpl_properties_zip_id" class="wp_wpl_properties_zip_id">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->zip_id->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->zip_id->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->zip_id->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->zip_name->Visible) { // zip_name ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->zip_name) == "") { ?>
		<th data-name="zip_name" class="<?php echo $wp_wpl_properties_list->zip_name->headerCellClass() ?>"><div id="elh_wp_wpl_properties_zip_name" class="wp_wpl_properties_zip_name"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->zip_name->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="zip_name" class="<?php echo $wp_wpl_properties_list->zip_name->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->zip_name) ?>', 1);"><div id="elh_wp_wpl_properties_zip_name" class="wp_wpl_properties_zip_name">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->zip_name->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->zip_name->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->zip_name->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->last_modified_time_stamp->Visible) { // last_modified_time_stamp ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->last_modified_time_stamp) == "") { ?>
		<th data-name="last_modified_time_stamp" class="<?php echo $wp_wpl_properties_list->last_modified_time_stamp->headerCellClass() ?>"><div id="elh_wp_wpl_properties_last_modified_time_stamp" class="wp_wpl_properties_last_modified_time_stamp"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->last_modified_time_stamp->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="last_modified_time_stamp" class="<?php echo $wp_wpl_properties_list->last_modified_time_stamp->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->last_modified_time_stamp) ?>', 1);"><div id="elh_wp_wpl_properties_last_modified_time_stamp" class="wp_wpl_properties_last_modified_time_stamp">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->last_modified_time_stamp->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->last_modified_time_stamp->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->last_modified_time_stamp->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->post_code->Visible) { // post_code ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->post_code) == "") { ?>
		<th data-name="post_code" class="<?php echo $wp_wpl_properties_list->post_code->headerCellClass() ?>"><div id="elh_wp_wpl_properties_post_code" class="wp_wpl_properties_post_code"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->post_code->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="post_code" class="<?php echo $wp_wpl_properties_list->post_code->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->post_code) ?>', 1);"><div id="elh_wp_wpl_properties_post_code" class="wp_wpl_properties_post_code">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->post_code->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->post_code->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->post_code->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->meta_description_manual->Visible) { // meta_description_manual ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->meta_description_manual) == "") { ?>
		<th data-name="meta_description_manual" class="<?php echo $wp_wpl_properties_list->meta_description_manual->headerCellClass() ?>"><div id="elh_wp_wpl_properties_meta_description_manual" class="wp_wpl_properties_meta_description_manual"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->meta_description_manual->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="meta_description_manual" class="<?php echo $wp_wpl_properties_list->meta_description_manual->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->meta_description_manual) ?>', 1);"><div id="elh_wp_wpl_properties_meta_description_manual" class="wp_wpl_properties_meta_description_manual">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->meta_description_manual->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->meta_description_manual->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->meta_description_manual->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->meta_keywords_manual->Visible) { // meta_keywords_manual ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->meta_keywords_manual) == "") { ?>
		<th data-name="meta_keywords_manual" class="<?php echo $wp_wpl_properties_list->meta_keywords_manual->headerCellClass() ?>"><div id="elh_wp_wpl_properties_meta_keywords_manual" class="wp_wpl_properties_meta_keywords_manual"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->meta_keywords_manual->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="meta_keywords_manual" class="<?php echo $wp_wpl_properties_list->meta_keywords_manual->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->meta_keywords_manual) ?>', 1);"><div id="elh_wp_wpl_properties_meta_keywords_manual" class="wp_wpl_properties_meta_keywords_manual">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->meta_keywords_manual->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->meta_keywords_manual->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->meta_keywords_manual->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->street_no->Visible) { // street_no ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->street_no) == "") { ?>
		<th data-name="street_no" class="<?php echo $wp_wpl_properties_list->street_no->headerCellClass() ?>"><div id="elh_wp_wpl_properties_street_no" class="wp_wpl_properties_street_no"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->street_no->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="street_no" class="<?php echo $wp_wpl_properties_list->street_no->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->street_no) ?>', 1);"><div id="elh_wp_wpl_properties_street_no" class="wp_wpl_properties_street_no">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->street_no->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->street_no->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->street_no->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->sp_featured->Visible) { // sp_featured ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->sp_featured) == "") { ?>
		<th data-name="sp_featured" class="<?php echo $wp_wpl_properties_list->sp_featured->headerCellClass() ?>"><div id="elh_wp_wpl_properties_sp_featured" class="wp_wpl_properties_sp_featured"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->sp_featured->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="sp_featured" class="<?php echo $wp_wpl_properties_list->sp_featured->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->sp_featured) ?>', 1);"><div id="elh_wp_wpl_properties_sp_featured" class="wp_wpl_properties_sp_featured">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->sp_featured->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->sp_featured->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->sp_featured->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->sp_hot->Visible) { // sp_hot ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->sp_hot) == "") { ?>
		<th data-name="sp_hot" class="<?php echo $wp_wpl_properties_list->sp_hot->headerCellClass() ?>"><div id="elh_wp_wpl_properties_sp_hot" class="wp_wpl_properties_sp_hot"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->sp_hot->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="sp_hot" class="<?php echo $wp_wpl_properties_list->sp_hot->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->sp_hot) ?>', 1);"><div id="elh_wp_wpl_properties_sp_hot" class="wp_wpl_properties_sp_hot">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->sp_hot->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->sp_hot->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->sp_hot->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->sp_openhouse->Visible) { // sp_openhouse ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->sp_openhouse) == "") { ?>
		<th data-name="sp_openhouse" class="<?php echo $wp_wpl_properties_list->sp_openhouse->headerCellClass() ?>"><div id="elh_wp_wpl_properties_sp_openhouse" class="wp_wpl_properties_sp_openhouse"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->sp_openhouse->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="sp_openhouse" class="<?php echo $wp_wpl_properties_list->sp_openhouse->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->sp_openhouse) ?>', 1);"><div id="elh_wp_wpl_properties_sp_openhouse" class="wp_wpl_properties_sp_openhouse">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->sp_openhouse->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->sp_openhouse->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->sp_openhouse->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->sp_forclosure->Visible) { // sp_forclosure ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->sp_forclosure) == "") { ?>
		<th data-name="sp_forclosure" class="<?php echo $wp_wpl_properties_list->sp_forclosure->headerCellClass() ?>"><div id="elh_wp_wpl_properties_sp_forclosure" class="wp_wpl_properties_sp_forclosure"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->sp_forclosure->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="sp_forclosure" class="<?php echo $wp_wpl_properties_list->sp_forclosure->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->sp_forclosure) ?>', 1);"><div id="elh_wp_wpl_properties_sp_forclosure" class="wp_wpl_properties_sp_forclosure">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->sp_forclosure->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->sp_forclosure->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->sp_forclosure->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->location_text->Visible) { // location_text ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location_text) == "") { ?>
		<th data-name="location_text" class="<?php echo $wp_wpl_properties_list->location_text->headerCellClass() ?>"><div id="elh_wp_wpl_properties_location_text" class="wp_wpl_properties_location_text"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location_text->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="location_text" class="<?php echo $wp_wpl_properties_list->location_text->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->location_text) ?>', 1);"><div id="elh_wp_wpl_properties_location_text" class="wp_wpl_properties_location_text">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->location_text->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->location_text->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->location_text->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_42->Visible) { // field_42 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_42) == "") { ?>
		<th data-name="field_42" class="<?php echo $wp_wpl_properties_list->field_42->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_42" class="wp_wpl_properties_field_42"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_42->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_42" class="<?php echo $wp_wpl_properties_list->field_42->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_42) ?>', 1);"><div id="elh_wp_wpl_properties_field_42" class="wp_wpl_properties_field_42">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_42->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_42->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_42->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_312->Visible) { // field_312 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_312) == "") { ?>
		<th data-name="field_312" class="<?php echo $wp_wpl_properties_list->field_312->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_312" class="wp_wpl_properties_field_312"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_312->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_312" class="<?php echo $wp_wpl_properties_list->field_312->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_312) ?>', 1);"><div id="elh_wp_wpl_properties_field_312" class="wp_wpl_properties_field_312">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_312->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_312->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_312->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_313->Visible) { // field_313 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_313) == "") { ?>
		<th data-name="field_313" class="<?php echo $wp_wpl_properties_list->field_313->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_313" class="wp_wpl_properties_field_313"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_313->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_313" class="<?php echo $wp_wpl_properties_list->field_313->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_313) ?>', 1);"><div id="elh_wp_wpl_properties_field_313" class="wp_wpl_properties_field_313">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_313->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_313->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_313->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_7->Visible) { // field_7 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_7) == "") { ?>
		<th data-name="field_7" class="<?php echo $wp_wpl_properties_list->field_7->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_7" class="wp_wpl_properties_field_7"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_7->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_7" class="<?php echo $wp_wpl_properties_list->field_7->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_7) ?>', 1);"><div id="elh_wp_wpl_properties_field_7" class="wp_wpl_properties_field_7">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_7->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_7->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_7->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_103->Visible) { // n_103 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_103) == "") { ?>
		<th data-name="n_103" class="<?php echo $wp_wpl_properties_list->n_103->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_103" class="wp_wpl_properties_n_103"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_103->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_103" class="<?php echo $wp_wpl_properties_list->n_103->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_103) ?>', 1);"><div id="elh_wp_wpl_properties_n_103" class="wp_wpl_properties_n_103">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_103->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_103->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_103->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_103_distance->Visible) { // n_103_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_103_distance) == "") { ?>
		<th data-name="n_103_distance" class="<?php echo $wp_wpl_properties_list->n_103_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_103_distance" class="wp_wpl_properties_n_103_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_103_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_103_distance" class="<?php echo $wp_wpl_properties_list->n_103_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_103_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_103_distance" class="wp_wpl_properties_n_103_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_103_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_103_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_103_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_103_distance_by->Visible) { // n_103_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_103_distance_by) == "") { ?>
		<th data-name="n_103_distance_by" class="<?php echo $wp_wpl_properties_list->n_103_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_103_distance_by" class="wp_wpl_properties_n_103_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_103_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_103_distance_by" class="<?php echo $wp_wpl_properties_list->n_103_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_103_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_103_distance_by" class="wp_wpl_properties_n_103_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_103_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_103_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_103_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_105->Visible) { // n_105 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_105) == "") { ?>
		<th data-name="n_105" class="<?php echo $wp_wpl_properties_list->n_105->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_105" class="wp_wpl_properties_n_105"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_105->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_105" class="<?php echo $wp_wpl_properties_list->n_105->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_105) ?>', 1);"><div id="elh_wp_wpl_properties_n_105" class="wp_wpl_properties_n_105">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_105->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_105->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_105->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_105_distance->Visible) { // n_105_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_105_distance) == "") { ?>
		<th data-name="n_105_distance" class="<?php echo $wp_wpl_properties_list->n_105_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_105_distance" class="wp_wpl_properties_n_105_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_105_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_105_distance" class="<?php echo $wp_wpl_properties_list->n_105_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_105_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_105_distance" class="wp_wpl_properties_n_105_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_105_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_105_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_105_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_105_distance_by->Visible) { // n_105_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_105_distance_by) == "") { ?>
		<th data-name="n_105_distance_by" class="<?php echo $wp_wpl_properties_list->n_105_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_105_distance_by" class="wp_wpl_properties_n_105_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_105_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_105_distance_by" class="<?php echo $wp_wpl_properties_list->n_105_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_105_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_105_distance_by" class="wp_wpl_properties_n_105_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_105_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_105_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_105_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_107->Visible) { // n_107 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_107) == "") { ?>
		<th data-name="n_107" class="<?php echo $wp_wpl_properties_list->n_107->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_107" class="wp_wpl_properties_n_107"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_107->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_107" class="<?php echo $wp_wpl_properties_list->n_107->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_107) ?>', 1);"><div id="elh_wp_wpl_properties_n_107" class="wp_wpl_properties_n_107">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_107->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_107->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_107->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_107_distance->Visible) { // n_107_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_107_distance) == "") { ?>
		<th data-name="n_107_distance" class="<?php echo $wp_wpl_properties_list->n_107_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_107_distance" class="wp_wpl_properties_n_107_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_107_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_107_distance" class="<?php echo $wp_wpl_properties_list->n_107_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_107_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_107_distance" class="wp_wpl_properties_n_107_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_107_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_107_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_107_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_107_distance_by->Visible) { // n_107_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_107_distance_by) == "") { ?>
		<th data-name="n_107_distance_by" class="<?php echo $wp_wpl_properties_list->n_107_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_107_distance_by" class="wp_wpl_properties_n_107_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_107_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_107_distance_by" class="<?php echo $wp_wpl_properties_list->n_107_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_107_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_107_distance_by" class="wp_wpl_properties_n_107_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_107_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_107_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_107_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_108->Visible) { // n_108 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_108) == "") { ?>
		<th data-name="n_108" class="<?php echo $wp_wpl_properties_list->n_108->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_108" class="wp_wpl_properties_n_108"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_108->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_108" class="<?php echo $wp_wpl_properties_list->n_108->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_108) ?>', 1);"><div id="elh_wp_wpl_properties_n_108" class="wp_wpl_properties_n_108">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_108->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_108->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_108->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_108_distance->Visible) { // n_108_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_108_distance) == "") { ?>
		<th data-name="n_108_distance" class="<?php echo $wp_wpl_properties_list->n_108_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_108_distance" class="wp_wpl_properties_n_108_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_108_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_108_distance" class="<?php echo $wp_wpl_properties_list->n_108_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_108_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_108_distance" class="wp_wpl_properties_n_108_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_108_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_108_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_108_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_108_distance_by->Visible) { // n_108_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_108_distance_by) == "") { ?>
		<th data-name="n_108_distance_by" class="<?php echo $wp_wpl_properties_list->n_108_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_108_distance_by" class="wp_wpl_properties_n_108_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_108_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_108_distance_by" class="<?php echo $wp_wpl_properties_list->n_108_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_108_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_108_distance_by" class="wp_wpl_properties_n_108_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_108_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_108_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_108_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_109->Visible) { // n_109 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_109) == "") { ?>
		<th data-name="n_109" class="<?php echo $wp_wpl_properties_list->n_109->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_109" class="wp_wpl_properties_n_109"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_109->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_109" class="<?php echo $wp_wpl_properties_list->n_109->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_109) ?>', 1);"><div id="elh_wp_wpl_properties_n_109" class="wp_wpl_properties_n_109">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_109->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_109->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_109->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_109_distance->Visible) { // n_109_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_109_distance) == "") { ?>
		<th data-name="n_109_distance" class="<?php echo $wp_wpl_properties_list->n_109_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_109_distance" class="wp_wpl_properties_n_109_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_109_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_109_distance" class="<?php echo $wp_wpl_properties_list->n_109_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_109_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_109_distance" class="wp_wpl_properties_n_109_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_109_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_109_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_109_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_109_distance_by->Visible) { // n_109_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_109_distance_by) == "") { ?>
		<th data-name="n_109_distance_by" class="<?php echo $wp_wpl_properties_list->n_109_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_109_distance_by" class="wp_wpl_properties_n_109_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_109_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_109_distance_by" class="<?php echo $wp_wpl_properties_list->n_109_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_109_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_109_distance_by" class="wp_wpl_properties_n_109_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_109_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_109_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_109_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_131->Visible) { // f_131 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_131) == "") { ?>
		<th data-name="f_131" class="<?php echo $wp_wpl_properties_list->f_131->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_131" class="wp_wpl_properties_f_131"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_131->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_131" class="<?php echo $wp_wpl_properties_list->f_131->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_131) ?>', 1);"><div id="elh_wp_wpl_properties_f_131" class="wp_wpl_properties_f_131">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_131->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_131->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_131->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_137->Visible) { // f_137 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_137) == "") { ?>
		<th data-name="f_137" class="<?php echo $wp_wpl_properties_list->f_137->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_137" class="wp_wpl_properties_f_137"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_137->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_137" class="<?php echo $wp_wpl_properties_list->f_137->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_137) ?>', 1);"><div id="elh_wp_wpl_properties_f_137" class="wp_wpl_properties_f_137">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_137->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_137->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_137->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_139->Visible) { // f_139 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_139) == "") { ?>
		<th data-name="f_139" class="<?php echo $wp_wpl_properties_list->f_139->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_139" class="wp_wpl_properties_f_139"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_139->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_139" class="<?php echo $wp_wpl_properties_list->f_139->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_139) ?>', 1);"><div id="elh_wp_wpl_properties_f_139" class="wp_wpl_properties_f_139">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_139->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_139->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_139->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_144->Visible) { // f_144 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_144) == "") { ?>
		<th data-name="f_144" class="<?php echo $wp_wpl_properties_list->f_144->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_144" class="wp_wpl_properties_f_144"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_144->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_144" class="<?php echo $wp_wpl_properties_list->f_144->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_144) ?>', 1);"><div id="elh_wp_wpl_properties_f_144" class="wp_wpl_properties_f_144">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_144->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_144->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_144->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_146->Visible) { // f_146 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_146) == "") { ?>
		<th data-name="f_146" class="<?php echo $wp_wpl_properties_list->f_146->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_146" class="wp_wpl_properties_f_146"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_146->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_146" class="<?php echo $wp_wpl_properties_list->f_146->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_146) ?>', 1);"><div id="elh_wp_wpl_properties_f_146" class="wp_wpl_properties_f_146">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_146->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_146->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_146->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_149->Visible) { // f_149 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_149) == "") { ?>
		<th data-name="f_149" class="<?php echo $wp_wpl_properties_list->f_149->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_149" class="wp_wpl_properties_f_149"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_149->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_149" class="<?php echo $wp_wpl_properties_list->f_149->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_149) ?>', 1);"><div id="elh_wp_wpl_properties_f_149" class="wp_wpl_properties_f_149">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_149->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_149->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_149->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_150->Visible) { // f_150 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_150) == "") { ?>
		<th data-name="f_150" class="<?php echo $wp_wpl_properties_list->f_150->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_150" class="wp_wpl_properties_f_150"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_150->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_150" class="<?php echo $wp_wpl_properties_list->f_150->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_150) ?>', 1);"><div id="elh_wp_wpl_properties_f_150" class="wp_wpl_properties_f_150">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_150->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_150->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_150->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_156->Visible) { // f_156 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_156) == "") { ?>
		<th data-name="f_156" class="<?php echo $wp_wpl_properties_list->f_156->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_156" class="wp_wpl_properties_f_156"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_156->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_156" class="<?php echo $wp_wpl_properties_list->f_156->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_156) ?>', 1);"><div id="elh_wp_wpl_properties_f_156" class="wp_wpl_properties_f_156">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_156->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_156->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_156->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_157->Visible) { // f_157 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_157) == "") { ?>
		<th data-name="f_157" class="<?php echo $wp_wpl_properties_list->f_157->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_157" class="wp_wpl_properties_f_157"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_157->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_157" class="<?php echo $wp_wpl_properties_list->f_157->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_157) ?>', 1);"><div id="elh_wp_wpl_properties_f_157" class="wp_wpl_properties_f_157">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_157->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_157->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_157->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_159->Visible) { // f_159 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_159) == "") { ?>
		<th data-name="f_159" class="<?php echo $wp_wpl_properties_list->f_159->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_159" class="wp_wpl_properties_f_159"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_159->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_159" class="<?php echo $wp_wpl_properties_list->f_159->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_159) ?>', 1);"><div id="elh_wp_wpl_properties_f_159" class="wp_wpl_properties_f_159">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_159->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_159->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_159->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_161->Visible) { // f_161 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_161) == "") { ?>
		<th data-name="f_161" class="<?php echo $wp_wpl_properties_list->f_161->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_161" class="wp_wpl_properties_f_161"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_161->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_161" class="<?php echo $wp_wpl_properties_list->f_161->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_161) ?>', 1);"><div id="elh_wp_wpl_properties_f_161" class="wp_wpl_properties_f_161">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_161->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_161->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_161->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_163->Visible) { // f_163 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_163) == "") { ?>
		<th data-name="f_163" class="<?php echo $wp_wpl_properties_list->f_163->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_163" class="wp_wpl_properties_f_163"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_163->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_163" class="<?php echo $wp_wpl_properties_list->f_163->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_163) ?>', 1);"><div id="elh_wp_wpl_properties_f_163" class="wp_wpl_properties_f_163">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_163->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_163->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_163->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_165->Visible) { // f_165 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_165) == "") { ?>
		<th data-name="f_165" class="<?php echo $wp_wpl_properties_list->f_165->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_165" class="wp_wpl_properties_f_165"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_165->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_165" class="<?php echo $wp_wpl_properties_list->f_165->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_165) ?>', 1);"><div id="elh_wp_wpl_properties_f_165" class="wp_wpl_properties_f_165">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_165->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_165->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_165->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_166->Visible) { // f_166 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_166) == "") { ?>
		<th data-name="f_166" class="<?php echo $wp_wpl_properties_list->f_166->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_166" class="wp_wpl_properties_f_166"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_166->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_166" class="<?php echo $wp_wpl_properties_list->f_166->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_166) ?>', 1);"><div id="elh_wp_wpl_properties_f_166" class="wp_wpl_properties_f_166">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_166->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_166->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_166->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->ref_id->Visible) { // ref_id ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->ref_id) == "") { ?>
		<th data-name="ref_id" class="<?php echo $wp_wpl_properties_list->ref_id->headerCellClass() ?>"><div id="elh_wp_wpl_properties_ref_id" class="wp_wpl_properties_ref_id"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->ref_id->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="ref_id" class="<?php echo $wp_wpl_properties_list->ref_id->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->ref_id) ?>', 1);"><div id="elh_wp_wpl_properties_ref_id" class="wp_wpl_properties_ref_id">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->ref_id->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->ref_id->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->ref_id->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_54->Visible) { // field_54 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_54) == "") { ?>
		<th data-name="field_54" class="<?php echo $wp_wpl_properties_list->field_54->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_54" class="wp_wpl_properties_field_54"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_54->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_54" class="<?php echo $wp_wpl_properties_list->field_54->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_54) ?>', 1);"><div id="elh_wp_wpl_properties_field_54" class="wp_wpl_properties_field_54">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_54->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_54->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_54->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->half_bathrooms->Visible) { // half_bathrooms ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->half_bathrooms) == "") { ?>
		<th data-name="half_bathrooms" class="<?php echo $wp_wpl_properties_list->half_bathrooms->headerCellClass() ?>"><div id="elh_wp_wpl_properties_half_bathrooms" class="wp_wpl_properties_half_bathrooms"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->half_bathrooms->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="half_bathrooms" class="<?php echo $wp_wpl_properties_list->half_bathrooms->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->half_bathrooms) ?>', 1);"><div id="elh_wp_wpl_properties_half_bathrooms" class="wp_wpl_properties_half_bathrooms">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->half_bathrooms->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->half_bathrooms->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->half_bathrooms->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_55->Visible) { // field_55 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_55) == "") { ?>
		<th data-name="field_55" class="<?php echo $wp_wpl_properties_list->field_55->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_55" class="wp_wpl_properties_field_55"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_55->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_55" class="<?php echo $wp_wpl_properties_list->field_55->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_55) ?>', 1);"><div id="elh_wp_wpl_properties_field_55" class="wp_wpl_properties_field_55">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_55->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_55->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_55->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->source->Visible) { // source ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->source) == "") { ?>
		<th data-name="source" class="<?php echo $wp_wpl_properties_list->source->headerCellClass() ?>"><div id="elh_wp_wpl_properties_source" class="wp_wpl_properties_source"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->source->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="source" class="<?php echo $wp_wpl_properties_list->source->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->source) ?>', 1);"><div id="elh_wp_wpl_properties_source" class="wp_wpl_properties_source">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->source->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->source->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->source->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->last_sync_date->Visible) { // last_sync_date ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->last_sync_date) == "") { ?>
		<th data-name="last_sync_date" class="<?php echo $wp_wpl_properties_list->last_sync_date->headerCellClass() ?>"><div id="elh_wp_wpl_properties_last_sync_date" class="wp_wpl_properties_last_sync_date"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->last_sync_date->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="last_sync_date" class="<?php echo $wp_wpl_properties_list->last_sync_date->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->last_sync_date) ?>', 1);"><div id="elh_wp_wpl_properties_last_sync_date" class="wp_wpl_properties_last_sync_date">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->last_sync_date->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->last_sync_date->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->last_sync_date->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->street_suffix->Visible) { // street_suffix ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->street_suffix) == "") { ?>
		<th data-name="street_suffix" class="<?php echo $wp_wpl_properties_list->street_suffix->headerCellClass() ?>"><div id="elh_wp_wpl_properties_street_suffix" class="wp_wpl_properties_street_suffix"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->street_suffix->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="street_suffix" class="<?php echo $wp_wpl_properties_list->street_suffix->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->street_suffix) ?>', 1);"><div id="elh_wp_wpl_properties_street_suffix" class="wp_wpl_properties_street_suffix">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->street_suffix->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->street_suffix->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->street_suffix->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->energy_tag->Visible) { // energy_tag ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->energy_tag) == "") { ?>
		<th data-name="energy_tag" class="<?php echo $wp_wpl_properties_list->energy_tag->headerCellClass() ?>"><div id="elh_wp_wpl_properties_energy_tag" class="wp_wpl_properties_energy_tag"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->energy_tag->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="energy_tag" class="<?php echo $wp_wpl_properties_list->energy_tag->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->energy_tag) ?>', 1);"><div id="elh_wp_wpl_properties_energy_tag" class="wp_wpl_properties_energy_tag">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->energy_tag->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->energy_tag->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->energy_tag->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3006->Visible) { // field_3006 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3006) == "") { ?>
		<th data-name="field_3006" class="<?php echo $wp_wpl_properties_list->field_3006->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3006" class="wp_wpl_properties_field_3006"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3006->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3006" class="<?php echo $wp_wpl_properties_list->field_3006->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3006) ?>', 1);"><div id="elh_wp_wpl_properties_field_3006" class="wp_wpl_properties_field_3006">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3006->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3006->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3006->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3007->Visible) { // field_3007 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3007) == "") { ?>
		<th data-name="field_3007" class="<?php echo $wp_wpl_properties_list->field_3007->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3007" class="wp_wpl_properties_field_3007"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3007->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3007" class="<?php echo $wp_wpl_properties_list->field_3007->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3007) ?>', 1);"><div id="elh_wp_wpl_properties_field_3007" class="wp_wpl_properties_field_3007">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3007->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3007->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3007->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3008->Visible) { // field_3008 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3008) == "") { ?>
		<th data-name="field_3008" class="<?php echo $wp_wpl_properties_list->field_3008->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3008" class="wp_wpl_properties_field_3008"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3008->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3008" class="<?php echo $wp_wpl_properties_list->field_3008->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3008) ?>', 1);"><div id="elh_wp_wpl_properties_field_3008" class="wp_wpl_properties_field_3008">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3008->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3008->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3008->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->importer_structure_id->Visible) { // importer_structure_id ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->importer_structure_id) == "") { ?>
		<th data-name="importer_structure_id" class="<?php echo $wp_wpl_properties_list->importer_structure_id->headerCellClass() ?>"><div id="elh_wp_wpl_properties_importer_structure_id" class="wp_wpl_properties_importer_structure_id"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->importer_structure_id->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="importer_structure_id" class="<?php echo $wp_wpl_properties_list->importer_structure_id->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->importer_structure_id) ?>', 1);"><div id="elh_wp_wpl_properties_importer_structure_id" class="wp_wpl_properties_importer_structure_id">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->importer_structure_id->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->importer_structure_id->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->importer_structure_id->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3009->Visible) { // field_3009 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3009) == "") { ?>
		<th data-name="field_3009" class="<?php echo $wp_wpl_properties_list->field_3009->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3009" class="wp_wpl_properties_field_3009"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3009->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3009" class="<?php echo $wp_wpl_properties_list->field_3009->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3009) ?>', 1);"><div id="elh_wp_wpl_properties_field_3009" class="wp_wpl_properties_field_3009">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3009->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3009->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3009->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3010->Visible) { // field_3010 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3010) == "") { ?>
		<th data-name="field_3010" class="<?php echo $wp_wpl_properties_list->field_3010->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3010" class="wp_wpl_properties_field_3010"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3010->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3010" class="<?php echo $wp_wpl_properties_list->field_3010->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3010) ?>', 1);"><div id="elh_wp_wpl_properties_field_3010" class="wp_wpl_properties_field_3010">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3010->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3010->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3010->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3012->Visible) { // field_3012 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3012) == "") { ?>
		<th data-name="field_3012" class="<?php echo $wp_wpl_properties_list->field_3012->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3012" class="wp_wpl_properties_field_3012"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3012->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3012" class="<?php echo $wp_wpl_properties_list->field_3012->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3012) ?>', 1);"><div id="elh_wp_wpl_properties_field_3012" class="wp_wpl_properties_field_3012">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3012->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3012->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3012->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3013->Visible) { // field_3013 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3013) == "") { ?>
		<th data-name="field_3013" class="<?php echo $wp_wpl_properties_list->field_3013->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3013" class="wp_wpl_properties_field_3013"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3013->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3013" class="<?php echo $wp_wpl_properties_list->field_3013->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3013) ?>', 1);"><div id="elh_wp_wpl_properties_field_3013" class="wp_wpl_properties_field_3013">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3013->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3013->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3013->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3014->Visible) { // field_3014 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3014) == "") { ?>
		<th data-name="field_3014" class="<?php echo $wp_wpl_properties_list->field_3014->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3014" class="wp_wpl_properties_field_3014"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3014->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3014" class="<?php echo $wp_wpl_properties_list->field_3014->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3014) ?>', 1);"><div id="elh_wp_wpl_properties_field_3014" class="wp_wpl_properties_field_3014">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3014->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3014->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3014->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3014->Visible) { // f_3014 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3014) == "") { ?>
		<th data-name="f_3014" class="<?php echo $wp_wpl_properties_list->f_3014->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3014" class="wp_wpl_properties_f_3014"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3014->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3014" class="<?php echo $wp_wpl_properties_list->f_3014->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3014) ?>', 1);"><div id="elh_wp_wpl_properties_f_3014" class="wp_wpl_properties_f_3014">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3014->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3014->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3014->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3015->Visible) { // field_3015 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3015) == "") { ?>
		<th data-name="field_3015" class="<?php echo $wp_wpl_properties_list->field_3015->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3015" class="wp_wpl_properties_field_3015"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3015->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3015" class="<?php echo $wp_wpl_properties_list->field_3015->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3015) ?>', 1);"><div id="elh_wp_wpl_properties_field_3015" class="wp_wpl_properties_field_3015">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3015->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3015->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3015->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3016->Visible) { // field_3016 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3016) == "") { ?>
		<th data-name="field_3016" class="<?php echo $wp_wpl_properties_list->field_3016->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3016" class="wp_wpl_properties_field_3016"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3016->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3016" class="<?php echo $wp_wpl_properties_list->field_3016->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3016) ?>', 1);"><div id="elh_wp_wpl_properties_field_3016" class="wp_wpl_properties_field_3016">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3016->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3016->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3016->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3018->Visible) { // f_3018 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3018) == "") { ?>
		<th data-name="f_3018" class="<?php echo $wp_wpl_properties_list->f_3018->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3018" class="wp_wpl_properties_f_3018"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3018->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3018" class="<?php echo $wp_wpl_properties_list->f_3018->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3018) ?>', 1);"><div id="elh_wp_wpl_properties_f_3018" class="wp_wpl_properties_f_3018">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3018->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3018->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3018->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3019->Visible) { // f_3019 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3019) == "") { ?>
		<th data-name="f_3019" class="<?php echo $wp_wpl_properties_list->f_3019->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3019" class="wp_wpl_properties_f_3019"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3019->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3019" class="<?php echo $wp_wpl_properties_list->f_3019->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3019) ?>', 1);"><div id="elh_wp_wpl_properties_f_3019" class="wp_wpl_properties_f_3019">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3019->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3019->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3019->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3020->Visible) { // f_3020 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3020) == "") { ?>
		<th data-name="f_3020" class="<?php echo $wp_wpl_properties_list->f_3020->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3020" class="wp_wpl_properties_f_3020"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3020->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3020" class="<?php echo $wp_wpl_properties_list->f_3020->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3020) ?>', 1);"><div id="elh_wp_wpl_properties_f_3020" class="wp_wpl_properties_f_3020">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3020->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3020->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3020->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3021->Visible) { // f_3021 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3021) == "") { ?>
		<th data-name="f_3021" class="<?php echo $wp_wpl_properties_list->f_3021->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3021" class="wp_wpl_properties_f_3021"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3021->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3021" class="<?php echo $wp_wpl_properties_list->f_3021->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3021) ?>', 1);"><div id="elh_wp_wpl_properties_f_3021" class="wp_wpl_properties_f_3021">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3021->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3021->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3021->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3022->Visible) { // f_3022 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3022) == "") { ?>
		<th data-name="f_3022" class="<?php echo $wp_wpl_properties_list->f_3022->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3022" class="wp_wpl_properties_f_3022"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3022->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3022" class="<?php echo $wp_wpl_properties_list->f_3022->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3022) ?>', 1);"><div id="elh_wp_wpl_properties_f_3022" class="wp_wpl_properties_f_3022">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3022->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3022->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3022->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3023->Visible) { // f_3023 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3023) == "") { ?>
		<th data-name="f_3023" class="<?php echo $wp_wpl_properties_list->f_3023->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3023" class="wp_wpl_properties_f_3023"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3023->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3023" class="<?php echo $wp_wpl_properties_list->f_3023->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3023) ?>', 1);"><div id="elh_wp_wpl_properties_f_3023" class="wp_wpl_properties_f_3023">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3023->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3023->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3023->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3024->Visible) { // f_3024 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3024) == "") { ?>
		<th data-name="f_3024" class="<?php echo $wp_wpl_properties_list->f_3024->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3024" class="wp_wpl_properties_f_3024"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3024->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3024" class="<?php echo $wp_wpl_properties_list->f_3024->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3024) ?>', 1);"><div id="elh_wp_wpl_properties_f_3024" class="wp_wpl_properties_f_3024">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3024->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3024->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3024->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3025->Visible) { // f_3025 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3025) == "") { ?>
		<th data-name="f_3025" class="<?php echo $wp_wpl_properties_list->f_3025->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3025" class="wp_wpl_properties_f_3025"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3025->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3025" class="<?php echo $wp_wpl_properties_list->f_3025->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3025) ?>', 1);"><div id="elh_wp_wpl_properties_f_3025" class="wp_wpl_properties_f_3025">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3025->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3025->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3025->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3026->Visible) { // f_3026 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3026) == "") { ?>
		<th data-name="f_3026" class="<?php echo $wp_wpl_properties_list->f_3026->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3026" class="wp_wpl_properties_f_3026"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3026->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3026" class="<?php echo $wp_wpl_properties_list->f_3026->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3026) ?>', 1);"><div id="elh_wp_wpl_properties_f_3026" class="wp_wpl_properties_f_3026">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3026->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3026->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3026->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3027->Visible) { // f_3027 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3027) == "") { ?>
		<th data-name="f_3027" class="<?php echo $wp_wpl_properties_list->f_3027->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3027" class="wp_wpl_properties_f_3027"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3027->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3027" class="<?php echo $wp_wpl_properties_list->f_3027->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3027) ?>', 1);"><div id="elh_wp_wpl_properties_f_3027" class="wp_wpl_properties_f_3027">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3027->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3027->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3027->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3028->Visible) { // f_3028 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3028) == "") { ?>
		<th data-name="f_3028" class="<?php echo $wp_wpl_properties_list->f_3028->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3028" class="wp_wpl_properties_f_3028"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3028->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3028" class="<?php echo $wp_wpl_properties_list->f_3028->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3028) ?>', 1);"><div id="elh_wp_wpl_properties_f_3028" class="wp_wpl_properties_f_3028">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3028->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3028->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3028->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3029->Visible) { // f_3029 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3029) == "") { ?>
		<th data-name="f_3029" class="<?php echo $wp_wpl_properties_list->f_3029->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3029" class="wp_wpl_properties_f_3029"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3029->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3029" class="<?php echo $wp_wpl_properties_list->f_3029->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3029) ?>', 1);"><div id="elh_wp_wpl_properties_f_3029" class="wp_wpl_properties_f_3029">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3029->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3029->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3029->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3031->Visible) { // f_3031 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3031) == "") { ?>
		<th data-name="f_3031" class="<?php echo $wp_wpl_properties_list->f_3031->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3031" class="wp_wpl_properties_f_3031"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3031->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3031" class="<?php echo $wp_wpl_properties_list->f_3031->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3031) ?>', 1);"><div id="elh_wp_wpl_properties_f_3031" class="wp_wpl_properties_f_3031">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3031->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3031->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3031->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3032->Visible) { // f_3032 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3032) == "") { ?>
		<th data-name="f_3032" class="<?php echo $wp_wpl_properties_list->f_3032->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3032" class="wp_wpl_properties_f_3032"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3032->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3032" class="<?php echo $wp_wpl_properties_list->f_3032->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3032) ?>', 1);"><div id="elh_wp_wpl_properties_f_3032" class="wp_wpl_properties_f_3032">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3032->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3032->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3032->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3033->Visible) { // f_3033 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3033) == "") { ?>
		<th data-name="f_3033" class="<?php echo $wp_wpl_properties_list->f_3033->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3033" class="wp_wpl_properties_f_3033"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3033->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3033" class="<?php echo $wp_wpl_properties_list->f_3033->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3033) ?>', 1);"><div id="elh_wp_wpl_properties_f_3033" class="wp_wpl_properties_f_3033">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3033->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3033->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3033->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3034->Visible) { // f_3034 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3034) == "") { ?>
		<th data-name="f_3034" class="<?php echo $wp_wpl_properties_list->f_3034->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3034" class="wp_wpl_properties_f_3034"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3034->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3034" class="<?php echo $wp_wpl_properties_list->f_3034->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3034) ?>', 1);"><div id="elh_wp_wpl_properties_f_3034" class="wp_wpl_properties_f_3034">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3034->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3034->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3034->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3035->Visible) { // f_3035 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3035) == "") { ?>
		<th data-name="f_3035" class="<?php echo $wp_wpl_properties_list->f_3035->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3035" class="wp_wpl_properties_f_3035"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3035->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3035" class="<?php echo $wp_wpl_properties_list->f_3035->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3035) ?>', 1);"><div id="elh_wp_wpl_properties_f_3035" class="wp_wpl_properties_f_3035">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3035->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3035->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3035->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3036->Visible) { // f_3036 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3036) == "") { ?>
		<th data-name="f_3036" class="<?php echo $wp_wpl_properties_list->f_3036->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3036" class="wp_wpl_properties_f_3036"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3036->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3036" class="<?php echo $wp_wpl_properties_list->f_3036->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3036) ?>', 1);"><div id="elh_wp_wpl_properties_f_3036" class="wp_wpl_properties_f_3036">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3036->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3036->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3036->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3037->Visible) { // f_3037 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3037) == "") { ?>
		<th data-name="f_3037" class="<?php echo $wp_wpl_properties_list->f_3037->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3037" class="wp_wpl_properties_f_3037"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3037->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3037" class="<?php echo $wp_wpl_properties_list->f_3037->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3037) ?>', 1);"><div id="elh_wp_wpl_properties_f_3037" class="wp_wpl_properties_f_3037">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3037->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3037->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3037->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3038->Visible) { // f_3038 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3038) == "") { ?>
		<th data-name="f_3038" class="<?php echo $wp_wpl_properties_list->f_3038->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3038" class="wp_wpl_properties_f_3038"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3038->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3038" class="<?php echo $wp_wpl_properties_list->f_3038->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3038) ?>', 1);"><div id="elh_wp_wpl_properties_f_3038" class="wp_wpl_properties_f_3038">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3038->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3038->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3038->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3039->Visible) { // f_3039 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3039) == "") { ?>
		<th data-name="f_3039" class="<?php echo $wp_wpl_properties_list->f_3039->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3039" class="wp_wpl_properties_f_3039"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3039->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3039" class="<?php echo $wp_wpl_properties_list->f_3039->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3039) ?>', 1);"><div id="elh_wp_wpl_properties_f_3039" class="wp_wpl_properties_f_3039">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3039->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3039->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3039->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3040->Visible) { // f_3040 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3040) == "") { ?>
		<th data-name="f_3040" class="<?php echo $wp_wpl_properties_list->f_3040->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3040" class="wp_wpl_properties_f_3040"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3040->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3040" class="<?php echo $wp_wpl_properties_list->f_3040->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3040) ?>', 1);"><div id="elh_wp_wpl_properties_f_3040" class="wp_wpl_properties_f_3040">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3040->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3040->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3040->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3041->Visible) { // f_3041 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3041) == "") { ?>
		<th data-name="f_3041" class="<?php echo $wp_wpl_properties_list->f_3041->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3041" class="wp_wpl_properties_f_3041"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3041->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3041" class="<?php echo $wp_wpl_properties_list->f_3041->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3041) ?>', 1);"><div id="elh_wp_wpl_properties_f_3041" class="wp_wpl_properties_f_3041">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3041->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3041->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3041->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3042->Visible) { // f_3042 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3042) == "") { ?>
		<th data-name="f_3042" class="<?php echo $wp_wpl_properties_list->f_3042->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3042" class="wp_wpl_properties_f_3042"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3042->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3042" class="<?php echo $wp_wpl_properties_list->f_3042->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3042) ?>', 1);"><div id="elh_wp_wpl_properties_f_3042" class="wp_wpl_properties_f_3042">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3042->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3042->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3042->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3043->Visible) { // f_3043 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3043) == "") { ?>
		<th data-name="f_3043" class="<?php echo $wp_wpl_properties_list->f_3043->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3043" class="wp_wpl_properties_f_3043"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3043->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3043" class="<?php echo $wp_wpl_properties_list->f_3043->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3043) ?>', 1);"><div id="elh_wp_wpl_properties_f_3043" class="wp_wpl_properties_f_3043">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3043->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3043->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3043->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3044->Visible) { // f_3044 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3044) == "") { ?>
		<th data-name="f_3044" class="<?php echo $wp_wpl_properties_list->f_3044->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3044" class="wp_wpl_properties_f_3044"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3044->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3044" class="<?php echo $wp_wpl_properties_list->f_3044->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3044) ?>', 1);"><div id="elh_wp_wpl_properties_f_3044" class="wp_wpl_properties_f_3044">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3044->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3044->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3044->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3045->Visible) { // n_3045 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3045) == "") { ?>
		<th data-name="n_3045" class="<?php echo $wp_wpl_properties_list->n_3045->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3045" class="wp_wpl_properties_n_3045"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3045->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3045" class="<?php echo $wp_wpl_properties_list->n_3045->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3045) ?>', 1);"><div id="elh_wp_wpl_properties_n_3045" class="wp_wpl_properties_n_3045">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3045->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3045->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3045->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3045_distance->Visible) { // n_3045_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3045_distance) == "") { ?>
		<th data-name="n_3045_distance" class="<?php echo $wp_wpl_properties_list->n_3045_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3045_distance" class="wp_wpl_properties_n_3045_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3045_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3045_distance" class="<?php echo $wp_wpl_properties_list->n_3045_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3045_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_3045_distance" class="wp_wpl_properties_n_3045_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3045_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3045_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3045_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3045_distance_by->Visible) { // n_3045_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3045_distance_by) == "") { ?>
		<th data-name="n_3045_distance_by" class="<?php echo $wp_wpl_properties_list->n_3045_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3045_distance_by" class="wp_wpl_properties_n_3045_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3045_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3045_distance_by" class="<?php echo $wp_wpl_properties_list->n_3045_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3045_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_3045_distance_by" class="wp_wpl_properties_n_3045_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3045_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3045_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3045_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3046->Visible) { // n_3046 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3046) == "") { ?>
		<th data-name="n_3046" class="<?php echo $wp_wpl_properties_list->n_3046->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3046" class="wp_wpl_properties_n_3046"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3046->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3046" class="<?php echo $wp_wpl_properties_list->n_3046->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3046) ?>', 1);"><div id="elh_wp_wpl_properties_n_3046" class="wp_wpl_properties_n_3046">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3046->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3046->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3046->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3046_distance->Visible) { // n_3046_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3046_distance) == "") { ?>
		<th data-name="n_3046_distance" class="<?php echo $wp_wpl_properties_list->n_3046_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3046_distance" class="wp_wpl_properties_n_3046_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3046_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3046_distance" class="<?php echo $wp_wpl_properties_list->n_3046_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3046_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_3046_distance" class="wp_wpl_properties_n_3046_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3046_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3046_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3046_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3046_distance_by->Visible) { // n_3046_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3046_distance_by) == "") { ?>
		<th data-name="n_3046_distance_by" class="<?php echo $wp_wpl_properties_list->n_3046_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3046_distance_by" class="wp_wpl_properties_n_3046_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3046_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3046_distance_by" class="<?php echo $wp_wpl_properties_list->n_3046_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3046_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_3046_distance_by" class="wp_wpl_properties_n_3046_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3046_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3046_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3046_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3047->Visible) { // n_3047 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3047) == "") { ?>
		<th data-name="n_3047" class="<?php echo $wp_wpl_properties_list->n_3047->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3047" class="wp_wpl_properties_n_3047"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3047->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3047" class="<?php echo $wp_wpl_properties_list->n_3047->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3047) ?>', 1);"><div id="elh_wp_wpl_properties_n_3047" class="wp_wpl_properties_n_3047">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3047->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3047->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3047->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3047_distance->Visible) { // n_3047_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3047_distance) == "") { ?>
		<th data-name="n_3047_distance" class="<?php echo $wp_wpl_properties_list->n_3047_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3047_distance" class="wp_wpl_properties_n_3047_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3047_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3047_distance" class="<?php echo $wp_wpl_properties_list->n_3047_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3047_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_3047_distance" class="wp_wpl_properties_n_3047_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3047_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3047_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3047_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3047_distance_by->Visible) { // n_3047_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3047_distance_by) == "") { ?>
		<th data-name="n_3047_distance_by" class="<?php echo $wp_wpl_properties_list->n_3047_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3047_distance_by" class="wp_wpl_properties_n_3047_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3047_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3047_distance_by" class="<?php echo $wp_wpl_properties_list->n_3047_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3047_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_3047_distance_by" class="wp_wpl_properties_n_3047_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3047_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3047_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3047_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3048->Visible) { // n_3048 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3048) == "") { ?>
		<th data-name="n_3048" class="<?php echo $wp_wpl_properties_list->n_3048->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3048" class="wp_wpl_properties_n_3048"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3048->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3048" class="<?php echo $wp_wpl_properties_list->n_3048->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3048) ?>', 1);"><div id="elh_wp_wpl_properties_n_3048" class="wp_wpl_properties_n_3048">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3048->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3048->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3048->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3048_distance->Visible) { // n_3048_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3048_distance) == "") { ?>
		<th data-name="n_3048_distance" class="<?php echo $wp_wpl_properties_list->n_3048_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3048_distance" class="wp_wpl_properties_n_3048_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3048_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3048_distance" class="<?php echo $wp_wpl_properties_list->n_3048_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3048_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_3048_distance" class="wp_wpl_properties_n_3048_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3048_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3048_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3048_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3048_distance_by->Visible) { // n_3048_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3048_distance_by) == "") { ?>
		<th data-name="n_3048_distance_by" class="<?php echo $wp_wpl_properties_list->n_3048_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3048_distance_by" class="wp_wpl_properties_n_3048_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3048_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3048_distance_by" class="<?php echo $wp_wpl_properties_list->n_3048_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3048_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_3048_distance_by" class="wp_wpl_properties_n_3048_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3048_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3048_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3048_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3049->Visible) { // n_3049 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3049) == "") { ?>
		<th data-name="n_3049" class="<?php echo $wp_wpl_properties_list->n_3049->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3049" class="wp_wpl_properties_n_3049"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3049->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3049" class="<?php echo $wp_wpl_properties_list->n_3049->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3049) ?>', 1);"><div id="elh_wp_wpl_properties_n_3049" class="wp_wpl_properties_n_3049">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3049->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3049->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3049->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3049_distance->Visible) { // n_3049_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3049_distance) == "") { ?>
		<th data-name="n_3049_distance" class="<?php echo $wp_wpl_properties_list->n_3049_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3049_distance" class="wp_wpl_properties_n_3049_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3049_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3049_distance" class="<?php echo $wp_wpl_properties_list->n_3049_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3049_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_3049_distance" class="wp_wpl_properties_n_3049_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3049_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3049_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3049_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3049_distance_by->Visible) { // n_3049_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3049_distance_by) == "") { ?>
		<th data-name="n_3049_distance_by" class="<?php echo $wp_wpl_properties_list->n_3049_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3049_distance_by" class="wp_wpl_properties_n_3049_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3049_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3049_distance_by" class="<?php echo $wp_wpl_properties_list->n_3049_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3049_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_3049_distance_by" class="wp_wpl_properties_n_3049_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3049_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3049_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3049_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3050->Visible) { // n_3050 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3050) == "") { ?>
		<th data-name="n_3050" class="<?php echo $wp_wpl_properties_list->n_3050->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3050" class="wp_wpl_properties_n_3050"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3050->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3050" class="<?php echo $wp_wpl_properties_list->n_3050->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3050) ?>', 1);"><div id="elh_wp_wpl_properties_n_3050" class="wp_wpl_properties_n_3050">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3050->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3050->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3050->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3050_distance->Visible) { // n_3050_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3050_distance) == "") { ?>
		<th data-name="n_3050_distance" class="<?php echo $wp_wpl_properties_list->n_3050_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3050_distance" class="wp_wpl_properties_n_3050_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3050_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3050_distance" class="<?php echo $wp_wpl_properties_list->n_3050_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3050_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_3050_distance" class="wp_wpl_properties_n_3050_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3050_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3050_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3050_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3050_distance_by->Visible) { // n_3050_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3050_distance_by) == "") { ?>
		<th data-name="n_3050_distance_by" class="<?php echo $wp_wpl_properties_list->n_3050_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3050_distance_by" class="wp_wpl_properties_n_3050_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3050_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3050_distance_by" class="<?php echo $wp_wpl_properties_list->n_3050_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3050_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_3050_distance_by" class="wp_wpl_properties_n_3050_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3050_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3050_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3050_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3051->Visible) { // n_3051 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3051) == "") { ?>
		<th data-name="n_3051" class="<?php echo $wp_wpl_properties_list->n_3051->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3051" class="wp_wpl_properties_n_3051"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3051->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3051" class="<?php echo $wp_wpl_properties_list->n_3051->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3051) ?>', 1);"><div id="elh_wp_wpl_properties_n_3051" class="wp_wpl_properties_n_3051">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3051->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3051->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3051->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3051_distance->Visible) { // n_3051_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3051_distance) == "") { ?>
		<th data-name="n_3051_distance" class="<?php echo $wp_wpl_properties_list->n_3051_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3051_distance" class="wp_wpl_properties_n_3051_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3051_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3051_distance" class="<?php echo $wp_wpl_properties_list->n_3051_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3051_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_3051_distance" class="wp_wpl_properties_n_3051_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3051_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3051_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3051_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3051_distance_by->Visible) { // n_3051_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3051_distance_by) == "") { ?>
		<th data-name="n_3051_distance_by" class="<?php echo $wp_wpl_properties_list->n_3051_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3051_distance_by" class="wp_wpl_properties_n_3051_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3051_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3051_distance_by" class="<?php echo $wp_wpl_properties_list->n_3051_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3051_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_3051_distance_by" class="wp_wpl_properties_n_3051_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3051_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3051_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3051_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3052->Visible) { // n_3052 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3052) == "") { ?>
		<th data-name="n_3052" class="<?php echo $wp_wpl_properties_list->n_3052->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3052" class="wp_wpl_properties_n_3052"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3052->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3052" class="<?php echo $wp_wpl_properties_list->n_3052->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3052) ?>', 1);"><div id="elh_wp_wpl_properties_n_3052" class="wp_wpl_properties_n_3052">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3052->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3052->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3052->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3052_distance->Visible) { // n_3052_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3052_distance) == "") { ?>
		<th data-name="n_3052_distance" class="<?php echo $wp_wpl_properties_list->n_3052_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3052_distance" class="wp_wpl_properties_n_3052_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3052_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3052_distance" class="<?php echo $wp_wpl_properties_list->n_3052_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3052_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_3052_distance" class="wp_wpl_properties_n_3052_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3052_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3052_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3052_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3052_distance_by->Visible) { // n_3052_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3052_distance_by) == "") { ?>
		<th data-name="n_3052_distance_by" class="<?php echo $wp_wpl_properties_list->n_3052_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3052_distance_by" class="wp_wpl_properties_n_3052_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3052_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3052_distance_by" class="<?php echo $wp_wpl_properties_list->n_3052_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3052_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_3052_distance_by" class="wp_wpl_properties_n_3052_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3052_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3052_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3052_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3053->Visible) { // n_3053 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3053) == "") { ?>
		<th data-name="n_3053" class="<?php echo $wp_wpl_properties_list->n_3053->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3053" class="wp_wpl_properties_n_3053"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3053->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3053" class="<?php echo $wp_wpl_properties_list->n_3053->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3053) ?>', 1);"><div id="elh_wp_wpl_properties_n_3053" class="wp_wpl_properties_n_3053">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3053->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3053->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3053->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3053_distance->Visible) { // n_3053_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3053_distance) == "") { ?>
		<th data-name="n_3053_distance" class="<?php echo $wp_wpl_properties_list->n_3053_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3053_distance" class="wp_wpl_properties_n_3053_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3053_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3053_distance" class="<?php echo $wp_wpl_properties_list->n_3053_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3053_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_3053_distance" class="wp_wpl_properties_n_3053_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3053_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3053_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3053_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3053_distance_by->Visible) { // n_3053_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3053_distance_by) == "") { ?>
		<th data-name="n_3053_distance_by" class="<?php echo $wp_wpl_properties_list->n_3053_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3053_distance_by" class="wp_wpl_properties_n_3053_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3053_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3053_distance_by" class="<?php echo $wp_wpl_properties_list->n_3053_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3053_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_3053_distance_by" class="wp_wpl_properties_n_3053_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3053_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3053_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3053_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3054->Visible) { // n_3054 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3054) == "") { ?>
		<th data-name="n_3054" class="<?php echo $wp_wpl_properties_list->n_3054->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3054" class="wp_wpl_properties_n_3054"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3054->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3054" class="<?php echo $wp_wpl_properties_list->n_3054->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3054) ?>', 1);"><div id="elh_wp_wpl_properties_n_3054" class="wp_wpl_properties_n_3054">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3054->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3054->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3054->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3054_distance->Visible) { // n_3054_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3054_distance) == "") { ?>
		<th data-name="n_3054_distance" class="<?php echo $wp_wpl_properties_list->n_3054_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3054_distance" class="wp_wpl_properties_n_3054_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3054_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3054_distance" class="<?php echo $wp_wpl_properties_list->n_3054_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3054_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_3054_distance" class="wp_wpl_properties_n_3054_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3054_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3054_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3054_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3054_distance_by->Visible) { // n_3054_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3054_distance_by) == "") { ?>
		<th data-name="n_3054_distance_by" class="<?php echo $wp_wpl_properties_list->n_3054_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3054_distance_by" class="wp_wpl_properties_n_3054_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3054_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3054_distance_by" class="<?php echo $wp_wpl_properties_list->n_3054_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3054_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_3054_distance_by" class="wp_wpl_properties_n_3054_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3054_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3054_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3054_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3055->Visible) { // n_3055 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3055) == "") { ?>
		<th data-name="n_3055" class="<?php echo $wp_wpl_properties_list->n_3055->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3055" class="wp_wpl_properties_n_3055"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3055->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3055" class="<?php echo $wp_wpl_properties_list->n_3055->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3055) ?>', 1);"><div id="elh_wp_wpl_properties_n_3055" class="wp_wpl_properties_n_3055">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3055->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3055->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3055->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3055_distance->Visible) { // n_3055_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3055_distance) == "") { ?>
		<th data-name="n_3055_distance" class="<?php echo $wp_wpl_properties_list->n_3055_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3055_distance" class="wp_wpl_properties_n_3055_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3055_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3055_distance" class="<?php echo $wp_wpl_properties_list->n_3055_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3055_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_3055_distance" class="wp_wpl_properties_n_3055_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3055_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3055_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3055_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3055_distance_by->Visible) { // n_3055_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3055_distance_by) == "") { ?>
		<th data-name="n_3055_distance_by" class="<?php echo $wp_wpl_properties_list->n_3055_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3055_distance_by" class="wp_wpl_properties_n_3055_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3055_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3055_distance_by" class="<?php echo $wp_wpl_properties_list->n_3055_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3055_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_3055_distance_by" class="wp_wpl_properties_n_3055_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3055_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3055_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3055_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3056->Visible) { // n_3056 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3056) == "") { ?>
		<th data-name="n_3056" class="<?php echo $wp_wpl_properties_list->n_3056->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3056" class="wp_wpl_properties_n_3056"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3056->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3056" class="<?php echo $wp_wpl_properties_list->n_3056->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3056) ?>', 1);"><div id="elh_wp_wpl_properties_n_3056" class="wp_wpl_properties_n_3056">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3056->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3056->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3056->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3056_distance->Visible) { // n_3056_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3056_distance) == "") { ?>
		<th data-name="n_3056_distance" class="<?php echo $wp_wpl_properties_list->n_3056_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3056_distance" class="wp_wpl_properties_n_3056_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3056_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3056_distance" class="<?php echo $wp_wpl_properties_list->n_3056_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3056_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_3056_distance" class="wp_wpl_properties_n_3056_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3056_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3056_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3056_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3056_distance_by->Visible) { // n_3056_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3056_distance_by) == "") { ?>
		<th data-name="n_3056_distance_by" class="<?php echo $wp_wpl_properties_list->n_3056_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3056_distance_by" class="wp_wpl_properties_n_3056_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3056_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3056_distance_by" class="<?php echo $wp_wpl_properties_list->n_3056_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3056_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_3056_distance_by" class="wp_wpl_properties_n_3056_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3056_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3056_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3056_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3057->Visible) { // n_3057 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3057) == "") { ?>
		<th data-name="n_3057" class="<?php echo $wp_wpl_properties_list->n_3057->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3057" class="wp_wpl_properties_n_3057"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3057->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3057" class="<?php echo $wp_wpl_properties_list->n_3057->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3057) ?>', 1);"><div id="elh_wp_wpl_properties_n_3057" class="wp_wpl_properties_n_3057">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3057->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3057->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3057->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3057_distance->Visible) { // n_3057_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3057_distance) == "") { ?>
		<th data-name="n_3057_distance" class="<?php echo $wp_wpl_properties_list->n_3057_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3057_distance" class="wp_wpl_properties_n_3057_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3057_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3057_distance" class="<?php echo $wp_wpl_properties_list->n_3057_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3057_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_3057_distance" class="wp_wpl_properties_n_3057_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3057_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3057_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3057_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3057_distance_by->Visible) { // n_3057_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3057_distance_by) == "") { ?>
		<th data-name="n_3057_distance_by" class="<?php echo $wp_wpl_properties_list->n_3057_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3057_distance_by" class="wp_wpl_properties_n_3057_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3057_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3057_distance_by" class="<?php echo $wp_wpl_properties_list->n_3057_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3057_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_3057_distance_by" class="wp_wpl_properties_n_3057_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3057_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3057_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3057_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3058->Visible) { // n_3058 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3058) == "") { ?>
		<th data-name="n_3058" class="<?php echo $wp_wpl_properties_list->n_3058->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3058" class="wp_wpl_properties_n_3058"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3058->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3058" class="<?php echo $wp_wpl_properties_list->n_3058->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3058) ?>', 1);"><div id="elh_wp_wpl_properties_n_3058" class="wp_wpl_properties_n_3058">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3058->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3058->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3058->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3058_distance->Visible) { // n_3058_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3058_distance) == "") { ?>
		<th data-name="n_3058_distance" class="<?php echo $wp_wpl_properties_list->n_3058_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3058_distance" class="wp_wpl_properties_n_3058_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3058_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3058_distance" class="<?php echo $wp_wpl_properties_list->n_3058_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3058_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_3058_distance" class="wp_wpl_properties_n_3058_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3058_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3058_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3058_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3058_distance_by->Visible) { // n_3058_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3058_distance_by) == "") { ?>
		<th data-name="n_3058_distance_by" class="<?php echo $wp_wpl_properties_list->n_3058_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3058_distance_by" class="wp_wpl_properties_n_3058_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3058_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3058_distance_by" class="<?php echo $wp_wpl_properties_list->n_3058_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3058_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_3058_distance_by" class="wp_wpl_properties_n_3058_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3058_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3058_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3058_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3059->Visible) { // n_3059 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3059) == "") { ?>
		<th data-name="n_3059" class="<?php echo $wp_wpl_properties_list->n_3059->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3059" class="wp_wpl_properties_n_3059"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3059->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3059" class="<?php echo $wp_wpl_properties_list->n_3059->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3059) ?>', 1);"><div id="elh_wp_wpl_properties_n_3059" class="wp_wpl_properties_n_3059">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3059->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3059->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3059->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3059_distance->Visible) { // n_3059_distance ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3059_distance) == "") { ?>
		<th data-name="n_3059_distance" class="<?php echo $wp_wpl_properties_list->n_3059_distance->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3059_distance" class="wp_wpl_properties_n_3059_distance"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3059_distance->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3059_distance" class="<?php echo $wp_wpl_properties_list->n_3059_distance->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3059_distance) ?>', 1);"><div id="elh_wp_wpl_properties_n_3059_distance" class="wp_wpl_properties_n_3059_distance">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3059_distance->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3059_distance->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3059_distance->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->n_3059_distance_by->Visible) { // n_3059_distance_by ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3059_distance_by) == "") { ?>
		<th data-name="n_3059_distance_by" class="<?php echo $wp_wpl_properties_list->n_3059_distance_by->headerCellClass() ?>"><div id="elh_wp_wpl_properties_n_3059_distance_by" class="wp_wpl_properties_n_3059_distance_by"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3059_distance_by->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="n_3059_distance_by" class="<?php echo $wp_wpl_properties_list->n_3059_distance_by->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->n_3059_distance_by) ?>', 1);"><div id="elh_wp_wpl_properties_n_3059_distance_by" class="wp_wpl_properties_n_3059_distance_by">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->n_3059_distance_by->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->n_3059_distance_by->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->n_3059_distance_by->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3060->Visible) { // f_3060 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3060) == "") { ?>
		<th data-name="f_3060" class="<?php echo $wp_wpl_properties_list->f_3060->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3060" class="wp_wpl_properties_f_3060"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3060->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3060" class="<?php echo $wp_wpl_properties_list->f_3060->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3060) ?>', 1);"><div id="elh_wp_wpl_properties_f_3060" class="wp_wpl_properties_f_3060">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3060->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3060->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3060->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3061->Visible) { // f_3061 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3061) == "") { ?>
		<th data-name="f_3061" class="<?php echo $wp_wpl_properties_list->f_3061->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3061" class="wp_wpl_properties_f_3061"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3061->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3061" class="<?php echo $wp_wpl_properties_list->f_3061->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3061) ?>', 1);"><div id="elh_wp_wpl_properties_f_3061" class="wp_wpl_properties_f_3061">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3061->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3061->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3061->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3062->Visible) { // f_3062 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3062) == "") { ?>
		<th data-name="f_3062" class="<?php echo $wp_wpl_properties_list->f_3062->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3062" class="wp_wpl_properties_f_3062"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3062->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3062" class="<?php echo $wp_wpl_properties_list->f_3062->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3062) ?>', 1);"><div id="elh_wp_wpl_properties_f_3062" class="wp_wpl_properties_f_3062">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3062->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3062->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3062->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3063->Visible) { // field_3063 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3063) == "") { ?>
		<th data-name="field_3063" class="<?php echo $wp_wpl_properties_list->field_3063->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3063" class="wp_wpl_properties_field_3063"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3063->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3063" class="<?php echo $wp_wpl_properties_list->field_3063->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3063) ?>', 1);"><div id="elh_wp_wpl_properties_field_3063" class="wp_wpl_properties_field_3063">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3063->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3063->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3063->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3064->Visible) { // field_3064 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3064) == "") { ?>
		<th data-name="field_3064" class="<?php echo $wp_wpl_properties_list->field_3064->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3064" class="wp_wpl_properties_field_3064"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3064->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3064" class="<?php echo $wp_wpl_properties_list->field_3064->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3064) ?>', 1);"><div id="elh_wp_wpl_properties_field_3064" class="wp_wpl_properties_field_3064">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3064->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3064->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3064->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3065->Visible) { // field_3065 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3065) == "") { ?>
		<th data-name="field_3065" class="<?php echo $wp_wpl_properties_list->field_3065->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3065" class="wp_wpl_properties_field_3065"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3065->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3065" class="<?php echo $wp_wpl_properties_list->field_3065->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3065) ?>', 1);"><div id="elh_wp_wpl_properties_field_3065" class="wp_wpl_properties_field_3065">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3065->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3065->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3065->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_313_en_us->Visible) { // field_313_en_us ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_313_en_us) == "") { ?>
		<th data-name="field_313_en_us" class="<?php echo $wp_wpl_properties_list->field_313_en_us->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_313_en_us" class="wp_wpl_properties_field_313_en_us"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_313_en_us->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_313_en_us" class="<?php echo $wp_wpl_properties_list->field_313_en_us->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_313_en_us) ?>', 1);"><div id="elh_wp_wpl_properties_field_313_en_us" class="wp_wpl_properties_field_313_en_us">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_313_en_us->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_313_en_us->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_313_en_us->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_313_fr_fr->Visible) { // field_313_fr_fr ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_313_fr_fr) == "") { ?>
		<th data-name="field_313_fr_fr" class="<?php echo $wp_wpl_properties_list->field_313_fr_fr->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_313_fr_fr" class="wp_wpl_properties_field_313_fr_fr"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_313_fr_fr->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_313_fr_fr" class="<?php echo $wp_wpl_properties_list->field_313_fr_fr->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_313_fr_fr) ?>', 1);"><div id="elh_wp_wpl_properties_field_313_fr_fr" class="wp_wpl_properties_field_313_fr_fr">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_313_fr_fr->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_313_fr_fr->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_313_fr_fr->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_312_en_us->Visible) { // field_312_en_us ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_312_en_us) == "") { ?>
		<th data-name="field_312_en_us" class="<?php echo $wp_wpl_properties_list->field_312_en_us->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_312_en_us" class="wp_wpl_properties_field_312_en_us"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_312_en_us->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_312_en_us" class="<?php echo $wp_wpl_properties_list->field_312_en_us->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_312_en_us) ?>', 1);"><div id="elh_wp_wpl_properties_field_312_en_us" class="wp_wpl_properties_field_312_en_us">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_312_en_us->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_312_en_us->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_312_en_us->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_312_fr_fr->Visible) { // field_312_fr_fr ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_312_fr_fr) == "") { ?>
		<th data-name="field_312_fr_fr" class="<?php echo $wp_wpl_properties_list->field_312_fr_fr->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_312_fr_fr" class="wp_wpl_properties_field_312_fr_fr"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_312_fr_fr->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_312_fr_fr" class="<?php echo $wp_wpl_properties_list->field_312_fr_fr->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_312_fr_fr) ?>', 1);"><div id="elh_wp_wpl_properties_field_312_fr_fr" class="wp_wpl_properties_field_312_fr_fr">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_312_fr_fr->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_312_fr_fr->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_312_fr_fr->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_42_en_us->Visible) { // field_42_en_us ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_42_en_us) == "") { ?>
		<th data-name="field_42_en_us" class="<?php echo $wp_wpl_properties_list->field_42_en_us->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_42_en_us" class="wp_wpl_properties_field_42_en_us"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_42_en_us->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_42_en_us" class="<?php echo $wp_wpl_properties_list->field_42_en_us->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_42_en_us) ?>', 1);"><div id="elh_wp_wpl_properties_field_42_en_us" class="wp_wpl_properties_field_42_en_us">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_42_en_us->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_42_en_us->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_42_en_us->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_42_fr_fr->Visible) { // field_42_fr_fr ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_42_fr_fr) == "") { ?>
		<th data-name="field_42_fr_fr" class="<?php echo $wp_wpl_properties_list->field_42_fr_fr->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_42_fr_fr" class="wp_wpl_properties_field_42_fr_fr"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_42_fr_fr->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_42_fr_fr" class="<?php echo $wp_wpl_properties_list->field_42_fr_fr->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_42_fr_fr) ?>', 1);"><div id="elh_wp_wpl_properties_field_42_fr_fr" class="wp_wpl_properties_field_42_fr_fr">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_42_fr_fr->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_42_fr_fr->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_42_fr_fr->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3067->Visible) { // field_3067 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3067) == "") { ?>
		<th data-name="field_3067" class="<?php echo $wp_wpl_properties_list->field_3067->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3067" class="wp_wpl_properties_field_3067"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3067->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3067" class="<?php echo $wp_wpl_properties_list->field_3067->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3067) ?>', 1);"><div id="elh_wp_wpl_properties_field_3067" class="wp_wpl_properties_field_3067">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3067->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3067->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3067->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3068->Visible) { // field_3068 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3068) == "") { ?>
		<th data-name="field_3068" class="<?php echo $wp_wpl_properties_list->field_3068->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3068" class="wp_wpl_properties_field_3068"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3068->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3068" class="<?php echo $wp_wpl_properties_list->field_3068->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3068) ?>', 1);"><div id="elh_wp_wpl_properties_field_3068" class="wp_wpl_properties_field_3068">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3068->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3068->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3068->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3069->Visible) { // field_3069 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3069) == "") { ?>
		<th data-name="field_3069" class="<?php echo $wp_wpl_properties_list->field_3069->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3069" class="wp_wpl_properties_field_3069"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3069->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3069" class="<?php echo $wp_wpl_properties_list->field_3069->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3069) ?>', 1);"><div id="elh_wp_wpl_properties_field_3069" class="wp_wpl_properties_field_3069">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3069->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3069->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3069->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3070->Visible) { // field_3070 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3070) == "") { ?>
		<th data-name="field_3070" class="<?php echo $wp_wpl_properties_list->field_3070->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3070" class="wp_wpl_properties_field_3070"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3070->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3070" class="<?php echo $wp_wpl_properties_list->field_3070->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3070) ?>', 1);"><div id="elh_wp_wpl_properties_field_3070" class="wp_wpl_properties_field_3070">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3070->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3070->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3070->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3071->Visible) { // field_3071 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3071) == "") { ?>
		<th data-name="field_3071" class="<?php echo $wp_wpl_properties_list->field_3071->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3071" class="wp_wpl_properties_field_3071"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3071->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3071" class="<?php echo $wp_wpl_properties_list->field_3071->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3071) ?>', 1);"><div id="elh_wp_wpl_properties_field_3071" class="wp_wpl_properties_field_3071">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3071->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3071->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3071->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3071_en_us->Visible) { // field_3071_en_us ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3071_en_us) == "") { ?>
		<th data-name="field_3071_en_us" class="<?php echo $wp_wpl_properties_list->field_3071_en_us->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3071_en_us" class="wp_wpl_properties_field_3071_en_us"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3071_en_us->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3071_en_us" class="<?php echo $wp_wpl_properties_list->field_3071_en_us->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3071_en_us) ?>', 1);"><div id="elh_wp_wpl_properties_field_3071_en_us" class="wp_wpl_properties_field_3071_en_us">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3071_en_us->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3071_en_us->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3071_en_us->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3071_fr_fr->Visible) { // field_3071_fr_fr ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3071_fr_fr) == "") { ?>
		<th data-name="field_3071_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3071_fr_fr->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3071_fr_fr" class="wp_wpl_properties_field_3071_fr_fr"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3071_fr_fr->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3071_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3071_fr_fr->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3071_fr_fr) ?>', 1);"><div id="elh_wp_wpl_properties_field_3071_fr_fr" class="wp_wpl_properties_field_3071_fr_fr">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3071_fr_fr->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3071_fr_fr->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3071_fr_fr->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3072->Visible) { // field_3072 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3072) == "") { ?>
		<th data-name="field_3072" class="<?php echo $wp_wpl_properties_list->field_3072->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3072" class="wp_wpl_properties_field_3072"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3072->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3072" class="<?php echo $wp_wpl_properties_list->field_3072->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3072) ?>', 1);"><div id="elh_wp_wpl_properties_field_3072" class="wp_wpl_properties_field_3072">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3072->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3072->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3072->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3073->Visible) { // field_3073 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3073) == "") { ?>
		<th data-name="field_3073" class="<?php echo $wp_wpl_properties_list->field_3073->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3073" class="wp_wpl_properties_field_3073"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3073->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3073" class="<?php echo $wp_wpl_properties_list->field_3073->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3073) ?>', 1);"><div id="elh_wp_wpl_properties_field_3073" class="wp_wpl_properties_field_3073">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3073->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3073->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3073->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3074->Visible) { // field_3074 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3074) == "") { ?>
		<th data-name="field_3074" class="<?php echo $wp_wpl_properties_list->field_3074->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3074" class="wp_wpl_properties_field_3074"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3074->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3074" class="<?php echo $wp_wpl_properties_list->field_3074->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3074) ?>', 1);"><div id="elh_wp_wpl_properties_field_3074" class="wp_wpl_properties_field_3074">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3074->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3074->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3074->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3074_en_us->Visible) { // field_3074_en_us ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3074_en_us) == "") { ?>
		<th data-name="field_3074_en_us" class="<?php echo $wp_wpl_properties_list->field_3074_en_us->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3074_en_us" class="wp_wpl_properties_field_3074_en_us"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3074_en_us->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3074_en_us" class="<?php echo $wp_wpl_properties_list->field_3074_en_us->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3074_en_us) ?>', 1);"><div id="elh_wp_wpl_properties_field_3074_en_us" class="wp_wpl_properties_field_3074_en_us">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3074_en_us->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3074_en_us->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3074_en_us->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3074_fr_fr->Visible) { // field_3074_fr_fr ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3074_fr_fr) == "") { ?>
		<th data-name="field_3074_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3074_fr_fr->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3074_fr_fr" class="wp_wpl_properties_field_3074_fr_fr"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3074_fr_fr->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3074_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3074_fr_fr->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3074_fr_fr) ?>', 1);"><div id="elh_wp_wpl_properties_field_3074_fr_fr" class="wp_wpl_properties_field_3074_fr_fr">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3074_fr_fr->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3074_fr_fr->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3074_fr_fr->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3075->Visible) { // field_3075 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3075) == "") { ?>
		<th data-name="field_3075" class="<?php echo $wp_wpl_properties_list->field_3075->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3075" class="wp_wpl_properties_field_3075"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3075->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3075" class="<?php echo $wp_wpl_properties_list->field_3075->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3075) ?>', 1);"><div id="elh_wp_wpl_properties_field_3075" class="wp_wpl_properties_field_3075">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3075->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3075->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3075->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3076->Visible) { // field_3076 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3076) == "") { ?>
		<th data-name="field_3076" class="<?php echo $wp_wpl_properties_list->field_3076->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3076" class="wp_wpl_properties_field_3076"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3076->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3076" class="<?php echo $wp_wpl_properties_list->field_3076->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3076) ?>', 1);"><div id="elh_wp_wpl_properties_field_3076" class="wp_wpl_properties_field_3076">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3076->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3076->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3076->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3077->Visible) { // field_3077 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3077) == "") { ?>
		<th data-name="field_3077" class="<?php echo $wp_wpl_properties_list->field_3077->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3077" class="wp_wpl_properties_field_3077"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3077->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3077" class="<?php echo $wp_wpl_properties_list->field_3077->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3077) ?>', 1);"><div id="elh_wp_wpl_properties_field_3077" class="wp_wpl_properties_field_3077">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3077->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3077->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3077->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3078->Visible) { // field_3078 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3078) == "") { ?>
		<th data-name="field_3078" class="<?php echo $wp_wpl_properties_list->field_3078->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3078" class="wp_wpl_properties_field_3078"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3078->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3078" class="<?php echo $wp_wpl_properties_list->field_3078->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3078) ?>', 1);"><div id="elh_wp_wpl_properties_field_3078" class="wp_wpl_properties_field_3078">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3078->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3078->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3078->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3079->Visible) { // field_3079 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3079) == "") { ?>
		<th data-name="field_3079" class="<?php echo $wp_wpl_properties_list->field_3079->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3079" class="wp_wpl_properties_field_3079"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3079->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3079" class="<?php echo $wp_wpl_properties_list->field_3079->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3079) ?>', 1);"><div id="elh_wp_wpl_properties_field_3079" class="wp_wpl_properties_field_3079">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3079->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3079->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3079->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3080->Visible) { // field_3080 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3080) == "") { ?>
		<th data-name="field_3080" class="<?php echo $wp_wpl_properties_list->field_3080->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3080" class="wp_wpl_properties_field_3080"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3080->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3080" class="<?php echo $wp_wpl_properties_list->field_3080->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3080) ?>', 1);"><div id="elh_wp_wpl_properties_field_3080" class="wp_wpl_properties_field_3080">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3080->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3080->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3080->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3076_en_us->Visible) { // field_3076_en_us ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3076_en_us) == "") { ?>
		<th data-name="field_3076_en_us" class="<?php echo $wp_wpl_properties_list->field_3076_en_us->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3076_en_us" class="wp_wpl_properties_field_3076_en_us"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3076_en_us->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3076_en_us" class="<?php echo $wp_wpl_properties_list->field_3076_en_us->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3076_en_us) ?>', 1);"><div id="elh_wp_wpl_properties_field_3076_en_us" class="wp_wpl_properties_field_3076_en_us">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3076_en_us->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3076_en_us->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3076_en_us->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3076_fr_fr->Visible) { // field_3076_fr_fr ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3076_fr_fr) == "") { ?>
		<th data-name="field_3076_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3076_fr_fr->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3076_fr_fr" class="wp_wpl_properties_field_3076_fr_fr"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3076_fr_fr->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3076_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3076_fr_fr->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3076_fr_fr) ?>', 1);"><div id="elh_wp_wpl_properties_field_3076_fr_fr" class="wp_wpl_properties_field_3076_fr_fr">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3076_fr_fr->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3076_fr_fr->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3076_fr_fr->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3080_en_us->Visible) { // field_3080_en_us ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3080_en_us) == "") { ?>
		<th data-name="field_3080_en_us" class="<?php echo $wp_wpl_properties_list->field_3080_en_us->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3080_en_us" class="wp_wpl_properties_field_3080_en_us"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3080_en_us->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3080_en_us" class="<?php echo $wp_wpl_properties_list->field_3080_en_us->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3080_en_us) ?>', 1);"><div id="elh_wp_wpl_properties_field_3080_en_us" class="wp_wpl_properties_field_3080_en_us">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3080_en_us->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3080_en_us->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3080_en_us->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3080_fr_fr->Visible) { // field_3080_fr_fr ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3080_fr_fr) == "") { ?>
		<th data-name="field_3080_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3080_fr_fr->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3080_fr_fr" class="wp_wpl_properties_field_3080_fr_fr"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3080_fr_fr->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3080_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3080_fr_fr->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3080_fr_fr) ?>', 1);"><div id="elh_wp_wpl_properties_field_3080_fr_fr" class="wp_wpl_properties_field_3080_fr_fr">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3080_fr_fr->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3080_fr_fr->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3080_fr_fr->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3081->Visible) { // field_3081 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3081) == "") { ?>
		<th data-name="field_3081" class="<?php echo $wp_wpl_properties_list->field_3081->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3081" class="wp_wpl_properties_field_3081"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3081->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3081" class="<?php echo $wp_wpl_properties_list->field_3081->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3081) ?>', 1);"><div id="elh_wp_wpl_properties_field_3081" class="wp_wpl_properties_field_3081">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3081->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3081->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3081->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3081_en_us->Visible) { // field_3081_en_us ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3081_en_us) == "") { ?>
		<th data-name="field_3081_en_us" class="<?php echo $wp_wpl_properties_list->field_3081_en_us->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3081_en_us" class="wp_wpl_properties_field_3081_en_us"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3081_en_us->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3081_en_us" class="<?php echo $wp_wpl_properties_list->field_3081_en_us->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3081_en_us) ?>', 1);"><div id="elh_wp_wpl_properties_field_3081_en_us" class="wp_wpl_properties_field_3081_en_us">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3081_en_us->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3081_en_us->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3081_en_us->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3081_fr_fr->Visible) { // field_3081_fr_fr ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3081_fr_fr) == "") { ?>
		<th data-name="field_3081_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3081_fr_fr->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3081_fr_fr" class="wp_wpl_properties_field_3081_fr_fr"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3081_fr_fr->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3081_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3081_fr_fr->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3081_fr_fr) ?>', 1);"><div id="elh_wp_wpl_properties_field_3081_fr_fr" class="wp_wpl_properties_field_3081_fr_fr">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3081_fr_fr->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3081_fr_fr->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3081_fr_fr->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3082->Visible) { // field_3082 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3082) == "") { ?>
		<th data-name="field_3082" class="<?php echo $wp_wpl_properties_list->field_3082->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3082" class="wp_wpl_properties_field_3082"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3082->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3082" class="<?php echo $wp_wpl_properties_list->field_3082->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3082) ?>', 1);"><div id="elh_wp_wpl_properties_field_3082" class="wp_wpl_properties_field_3082">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3082->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3082->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3082->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3082_en_us->Visible) { // field_3082_en_us ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3082_en_us) == "") { ?>
		<th data-name="field_3082_en_us" class="<?php echo $wp_wpl_properties_list->field_3082_en_us->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3082_en_us" class="wp_wpl_properties_field_3082_en_us"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3082_en_us->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3082_en_us" class="<?php echo $wp_wpl_properties_list->field_3082_en_us->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3082_en_us) ?>', 1);"><div id="elh_wp_wpl_properties_field_3082_en_us" class="wp_wpl_properties_field_3082_en_us">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3082_en_us->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3082_en_us->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3082_en_us->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3082_fr_fr->Visible) { // field_3082_fr_fr ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3082_fr_fr) == "") { ?>
		<th data-name="field_3082_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3082_fr_fr->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3082_fr_fr" class="wp_wpl_properties_field_3082_fr_fr"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3082_fr_fr->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3082_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3082_fr_fr->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3082_fr_fr) ?>', 1);"><div id="elh_wp_wpl_properties_field_3082_fr_fr" class="wp_wpl_properties_field_3082_fr_fr">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3082_fr_fr->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3082_fr_fr->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3082_fr_fr->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3084->Visible) { // field_3084 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3084) == "") { ?>
		<th data-name="field_3084" class="<?php echo $wp_wpl_properties_list->field_3084->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3084" class="wp_wpl_properties_field_3084"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3084->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3084" class="<?php echo $wp_wpl_properties_list->field_3084->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3084) ?>', 1);"><div id="elh_wp_wpl_properties_field_3084" class="wp_wpl_properties_field_3084">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3084->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3084->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3084->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3085->Visible) { // field_3085 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3085) == "") { ?>
		<th data-name="field_3085" class="<?php echo $wp_wpl_properties_list->field_3085->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3085" class="wp_wpl_properties_field_3085"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3085->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3085" class="<?php echo $wp_wpl_properties_list->field_3085->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3085) ?>', 1);"><div id="elh_wp_wpl_properties_field_3085" class="wp_wpl_properties_field_3085">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3085->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3085->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3085->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3086->Visible) { // field_3086 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3086) == "") { ?>
		<th data-name="field_3086" class="<?php echo $wp_wpl_properties_list->field_3086->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3086" class="wp_wpl_properties_field_3086"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3086->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3086" class="<?php echo $wp_wpl_properties_list->field_3086->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3086) ?>', 1);"><div id="elh_wp_wpl_properties_field_3086" class="wp_wpl_properties_field_3086">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3086->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3086->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3086->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3096->Visible) { // field_3096 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3096) == "") { ?>
		<th data-name="field_3096" class="<?php echo $wp_wpl_properties_list->field_3096->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3096" class="wp_wpl_properties_field_3096"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3096->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3096" class="<?php echo $wp_wpl_properties_list->field_3096->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3096) ?>', 1);"><div id="elh_wp_wpl_properties_field_3096" class="wp_wpl_properties_field_3096">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3096->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3096->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3096->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3097->Visible) { // field_3097 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3097) == "") { ?>
		<th data-name="field_3097" class="<?php echo $wp_wpl_properties_list->field_3097->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3097" class="wp_wpl_properties_field_3097"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3097->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3097" class="<?php echo $wp_wpl_properties_list->field_3097->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3097) ?>', 1);"><div id="elh_wp_wpl_properties_field_3097" class="wp_wpl_properties_field_3097">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3097->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3097->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3097->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3098->Visible) { // field_3098 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3098) == "") { ?>
		<th data-name="field_3098" class="<?php echo $wp_wpl_properties_list->field_3098->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3098" class="wp_wpl_properties_field_3098"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3098->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3098" class="<?php echo $wp_wpl_properties_list->field_3098->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3098) ?>', 1);"><div id="elh_wp_wpl_properties_field_3098" class="wp_wpl_properties_field_3098">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3098->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3098->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3098->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3099->Visible) { // field_3099 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3099) == "") { ?>
		<th data-name="field_3099" class="<?php echo $wp_wpl_properties_list->field_3099->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3099" class="wp_wpl_properties_field_3099"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3099->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3099" class="<?php echo $wp_wpl_properties_list->field_3099->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3099) ?>', 1);"><div id="elh_wp_wpl_properties_field_3099" class="wp_wpl_properties_field_3099">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3099->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3099->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3099->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3100->Visible) { // field_3100 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3100) == "") { ?>
		<th data-name="field_3100" class="<?php echo $wp_wpl_properties_list->field_3100->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3100" class="wp_wpl_properties_field_3100"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3100->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3100" class="<?php echo $wp_wpl_properties_list->field_3100->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3100) ?>', 1);"><div id="elh_wp_wpl_properties_field_3100" class="wp_wpl_properties_field_3100">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3100->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3100->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3100->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3101->Visible) { // field_3101 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3101) == "") { ?>
		<th data-name="field_3101" class="<?php echo $wp_wpl_properties_list->field_3101->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3101" class="wp_wpl_properties_field_3101"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3101->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3101" class="<?php echo $wp_wpl_properties_list->field_3101->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3101) ?>', 1);"><div id="elh_wp_wpl_properties_field_3101" class="wp_wpl_properties_field_3101">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3101->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3101->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3101->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3102->Visible) { // field_3102 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3102) == "") { ?>
		<th data-name="field_3102" class="<?php echo $wp_wpl_properties_list->field_3102->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3102" class="wp_wpl_properties_field_3102"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3102->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3102" class="<?php echo $wp_wpl_properties_list->field_3102->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3102) ?>', 1);"><div id="elh_wp_wpl_properties_field_3102" class="wp_wpl_properties_field_3102">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3102->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3102->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3102->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3103->Visible) { // field_3103 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3103) == "") { ?>
		<th data-name="field_3103" class="<?php echo $wp_wpl_properties_list->field_3103->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3103" class="wp_wpl_properties_field_3103"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3103->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3103" class="<?php echo $wp_wpl_properties_list->field_3103->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3103) ?>', 1);"><div id="elh_wp_wpl_properties_field_3103" class="wp_wpl_properties_field_3103">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3103->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3103->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3103->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3104->Visible) { // field_3104 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3104) == "") { ?>
		<th data-name="field_3104" class="<?php echo $wp_wpl_properties_list->field_3104->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3104" class="wp_wpl_properties_field_3104"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3104->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3104" class="<?php echo $wp_wpl_properties_list->field_3104->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3104) ?>', 1);"><div id="elh_wp_wpl_properties_field_3104" class="wp_wpl_properties_field_3104">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3104->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3104->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3104->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3105->Visible) { // field_3105 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3105) == "") { ?>
		<th data-name="field_3105" class="<?php echo $wp_wpl_properties_list->field_3105->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3105" class="wp_wpl_properties_field_3105"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3105->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3105" class="<?php echo $wp_wpl_properties_list->field_3105->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3105) ?>', 1);"><div id="elh_wp_wpl_properties_field_3105" class="wp_wpl_properties_field_3105">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3105->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3105->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3105->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3106->Visible) { // field_3106 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3106) == "") { ?>
		<th data-name="field_3106" class="<?php echo $wp_wpl_properties_list->field_3106->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3106" class="wp_wpl_properties_field_3106"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3106->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3106" class="<?php echo $wp_wpl_properties_list->field_3106->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3106) ?>', 1);"><div id="elh_wp_wpl_properties_field_3106" class="wp_wpl_properties_field_3106">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3106->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3106->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3106->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3107->Visible) { // field_3107 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3107) == "") { ?>
		<th data-name="field_3107" class="<?php echo $wp_wpl_properties_list->field_3107->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3107" class="wp_wpl_properties_field_3107"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3107->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3107" class="<?php echo $wp_wpl_properties_list->field_3107->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3107) ?>', 1);"><div id="elh_wp_wpl_properties_field_3107" class="wp_wpl_properties_field_3107">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3107->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3107->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3107->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3108->Visible) { // field_3108 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3108) == "") { ?>
		<th data-name="field_3108" class="<?php echo $wp_wpl_properties_list->field_3108->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3108" class="wp_wpl_properties_field_3108"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3108->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3108" class="<?php echo $wp_wpl_properties_list->field_3108->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3108) ?>', 1);"><div id="elh_wp_wpl_properties_field_3108" class="wp_wpl_properties_field_3108">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3108->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3108->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3108->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3109->Visible) { // field_3109 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3109) == "") { ?>
		<th data-name="field_3109" class="<?php echo $wp_wpl_properties_list->field_3109->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3109" class="wp_wpl_properties_field_3109"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3109->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3109" class="<?php echo $wp_wpl_properties_list->field_3109->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3109) ?>', 1);"><div id="elh_wp_wpl_properties_field_3109" class="wp_wpl_properties_field_3109">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3109->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3109->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3109->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3110->Visible) { // field_3110 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3110) == "") { ?>
		<th data-name="field_3110" class="<?php echo $wp_wpl_properties_list->field_3110->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3110" class="wp_wpl_properties_field_3110"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3110->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3110" class="<?php echo $wp_wpl_properties_list->field_3110->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3110) ?>', 1);"><div id="elh_wp_wpl_properties_field_3110" class="wp_wpl_properties_field_3110">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3110->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3110->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3110->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3111->Visible) { // field_3111 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3111) == "") { ?>
		<th data-name="field_3111" class="<?php echo $wp_wpl_properties_list->field_3111->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3111" class="wp_wpl_properties_field_3111"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3111->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3111" class="<?php echo $wp_wpl_properties_list->field_3111->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3111) ?>', 1);"><div id="elh_wp_wpl_properties_field_3111" class="wp_wpl_properties_field_3111">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3111->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3111->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3111->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3112->Visible) { // field_3112 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3112) == "") { ?>
		<th data-name="field_3112" class="<?php echo $wp_wpl_properties_list->field_3112->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3112" class="wp_wpl_properties_field_3112"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3112->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3112" class="<?php echo $wp_wpl_properties_list->field_3112->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3112) ?>', 1);"><div id="elh_wp_wpl_properties_field_3112" class="wp_wpl_properties_field_3112">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3112->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3112->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3112->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3113->Visible) { // field_3113 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3113) == "") { ?>
		<th data-name="field_3113" class="<?php echo $wp_wpl_properties_list->field_3113->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3113" class="wp_wpl_properties_field_3113"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3113->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3113" class="<?php echo $wp_wpl_properties_list->field_3113->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3113) ?>', 1);"><div id="elh_wp_wpl_properties_field_3113" class="wp_wpl_properties_field_3113">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3113->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3113->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3113->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3113_en_us->Visible) { // field_3113_en_us ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3113_en_us) == "") { ?>
		<th data-name="field_3113_en_us" class="<?php echo $wp_wpl_properties_list->field_3113_en_us->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3113_en_us" class="wp_wpl_properties_field_3113_en_us"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3113_en_us->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3113_en_us" class="<?php echo $wp_wpl_properties_list->field_3113_en_us->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3113_en_us) ?>', 1);"><div id="elh_wp_wpl_properties_field_3113_en_us" class="wp_wpl_properties_field_3113_en_us">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3113_en_us->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3113_en_us->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3113_en_us->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3113_fr_fr->Visible) { // field_3113_fr_fr ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3113_fr_fr) == "") { ?>
		<th data-name="field_3113_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3113_fr_fr->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3113_fr_fr" class="wp_wpl_properties_field_3113_fr_fr"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3113_fr_fr->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3113_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3113_fr_fr->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3113_fr_fr) ?>', 1);"><div id="elh_wp_wpl_properties_field_3113_fr_fr" class="wp_wpl_properties_field_3113_fr_fr">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3113_fr_fr->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3113_fr_fr->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3113_fr_fr->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3114->Visible) { // field_3114 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3114) == "") { ?>
		<th data-name="field_3114" class="<?php echo $wp_wpl_properties_list->field_3114->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3114" class="wp_wpl_properties_field_3114"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3114->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3114" class="<?php echo $wp_wpl_properties_list->field_3114->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3114) ?>', 1);"><div id="elh_wp_wpl_properties_field_3114" class="wp_wpl_properties_field_3114">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3114->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3114->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3114->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3114_en_us->Visible) { // field_3114_en_us ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3114_en_us) == "") { ?>
		<th data-name="field_3114_en_us" class="<?php echo $wp_wpl_properties_list->field_3114_en_us->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3114_en_us" class="wp_wpl_properties_field_3114_en_us"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3114_en_us->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3114_en_us" class="<?php echo $wp_wpl_properties_list->field_3114_en_us->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3114_en_us) ?>', 1);"><div id="elh_wp_wpl_properties_field_3114_en_us" class="wp_wpl_properties_field_3114_en_us">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3114_en_us->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3114_en_us->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3114_en_us->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3114_fr_fr->Visible) { // field_3114_fr_fr ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3114_fr_fr) == "") { ?>
		<th data-name="field_3114_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3114_fr_fr->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3114_fr_fr" class="wp_wpl_properties_field_3114_fr_fr"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3114_fr_fr->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3114_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3114_fr_fr->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3114_fr_fr) ?>', 1);"><div id="elh_wp_wpl_properties_field_3114_fr_fr" class="wp_wpl_properties_field_3114_fr_fr">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3114_fr_fr->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3114_fr_fr->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3114_fr_fr->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3115->Visible) { // field_3115 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3115) == "") { ?>
		<th data-name="field_3115" class="<?php echo $wp_wpl_properties_list->field_3115->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3115" class="wp_wpl_properties_field_3115"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3115->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3115" class="<?php echo $wp_wpl_properties_list->field_3115->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3115) ?>', 1);"><div id="elh_wp_wpl_properties_field_3115" class="wp_wpl_properties_field_3115">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3115->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3115->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3115->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3115_si->Visible) { // field_3115_si ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3115_si) == "") { ?>
		<th data-name="field_3115_si" class="<?php echo $wp_wpl_properties_list->field_3115_si->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3115_si" class="wp_wpl_properties_field_3115_si"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3115_si->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3115_si" class="<?php echo $wp_wpl_properties_list->field_3115_si->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3115_si) ?>', 1);"><div id="elh_wp_wpl_properties_field_3115_si" class="wp_wpl_properties_field_3115_si">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3115_si->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3115_si->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3115_si->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3115_unit->Visible) { // field_3115_unit ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3115_unit) == "") { ?>
		<th data-name="field_3115_unit" class="<?php echo $wp_wpl_properties_list->field_3115_unit->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3115_unit" class="wp_wpl_properties_field_3115_unit"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3115_unit->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3115_unit" class="<?php echo $wp_wpl_properties_list->field_3115_unit->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3115_unit) ?>', 1);"><div id="elh_wp_wpl_properties_field_3115_unit" class="wp_wpl_properties_field_3115_unit">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3115_unit->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3115_unit->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3115_unit->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3116->Visible) { // field_3116 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3116) == "") { ?>
		<th data-name="field_3116" class="<?php echo $wp_wpl_properties_list->field_3116->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3116" class="wp_wpl_properties_field_3116"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3116->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3116" class="<?php echo $wp_wpl_properties_list->field_3116->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3116) ?>', 1);"><div id="elh_wp_wpl_properties_field_3116" class="wp_wpl_properties_field_3116">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3116->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3116->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3116->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3117->Visible) { // field_3117 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3117) == "") { ?>
		<th data-name="field_3117" class="<?php echo $wp_wpl_properties_list->field_3117->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3117" class="wp_wpl_properties_field_3117"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3117->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3117" class="<?php echo $wp_wpl_properties_list->field_3117->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3117) ?>', 1);"><div id="elh_wp_wpl_properties_field_3117" class="wp_wpl_properties_field_3117">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3117->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3117->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3117->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3117_en_us->Visible) { // field_3117_en_us ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3117_en_us) == "") { ?>
		<th data-name="field_3117_en_us" class="<?php echo $wp_wpl_properties_list->field_3117_en_us->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3117_en_us" class="wp_wpl_properties_field_3117_en_us"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3117_en_us->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3117_en_us" class="<?php echo $wp_wpl_properties_list->field_3117_en_us->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3117_en_us) ?>', 1);"><div id="elh_wp_wpl_properties_field_3117_en_us" class="wp_wpl_properties_field_3117_en_us">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3117_en_us->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3117_en_us->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3117_en_us->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3117_fr_fr->Visible) { // field_3117_fr_fr ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3117_fr_fr) == "") { ?>
		<th data-name="field_3117_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3117_fr_fr->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3117_fr_fr" class="wp_wpl_properties_field_3117_fr_fr"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3117_fr_fr->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3117_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3117_fr_fr->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3117_fr_fr) ?>', 1);"><div id="elh_wp_wpl_properties_field_3117_fr_fr" class="wp_wpl_properties_field_3117_fr_fr">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3117_fr_fr->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3117_fr_fr->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3117_fr_fr->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3118->Visible) { // field_3118 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3118) == "") { ?>
		<th data-name="field_3118" class="<?php echo $wp_wpl_properties_list->field_3118->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3118" class="wp_wpl_properties_field_3118"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3118->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3118" class="<?php echo $wp_wpl_properties_list->field_3118->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3118) ?>', 1);"><div id="elh_wp_wpl_properties_field_3118" class="wp_wpl_properties_field_3118">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3118->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3118->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3118->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3118_en_us->Visible) { // field_3118_en_us ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3118_en_us) == "") { ?>
		<th data-name="field_3118_en_us" class="<?php echo $wp_wpl_properties_list->field_3118_en_us->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3118_en_us" class="wp_wpl_properties_field_3118_en_us"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3118_en_us->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3118_en_us" class="<?php echo $wp_wpl_properties_list->field_3118_en_us->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3118_en_us) ?>', 1);"><div id="elh_wp_wpl_properties_field_3118_en_us" class="wp_wpl_properties_field_3118_en_us">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3118_en_us->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3118_en_us->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3118_en_us->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3118_fr_fr->Visible) { // field_3118_fr_fr ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3118_fr_fr) == "") { ?>
		<th data-name="field_3118_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3118_fr_fr->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3118_fr_fr" class="wp_wpl_properties_field_3118_fr_fr"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3118_fr_fr->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3118_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3118_fr_fr->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3118_fr_fr) ?>', 1);"><div id="elh_wp_wpl_properties_field_3118_fr_fr" class="wp_wpl_properties_field_3118_fr_fr">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3118_fr_fr->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3118_fr_fr->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3118_fr_fr->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3119->Visible) { // field_3119 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3119) == "") { ?>
		<th data-name="field_3119" class="<?php echo $wp_wpl_properties_list->field_3119->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3119" class="wp_wpl_properties_field_3119"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3119->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3119" class="<?php echo $wp_wpl_properties_list->field_3119->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3119) ?>', 1);"><div id="elh_wp_wpl_properties_field_3119" class="wp_wpl_properties_field_3119">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3119->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3119->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3119->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3119_en_us->Visible) { // field_3119_en_us ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3119_en_us) == "") { ?>
		<th data-name="field_3119_en_us" class="<?php echo $wp_wpl_properties_list->field_3119_en_us->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3119_en_us" class="wp_wpl_properties_field_3119_en_us"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3119_en_us->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3119_en_us" class="<?php echo $wp_wpl_properties_list->field_3119_en_us->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3119_en_us) ?>', 1);"><div id="elh_wp_wpl_properties_field_3119_en_us" class="wp_wpl_properties_field_3119_en_us">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3119_en_us->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3119_en_us->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3119_en_us->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3119_fr_fr->Visible) { // field_3119_fr_fr ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3119_fr_fr) == "") { ?>
		<th data-name="field_3119_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3119_fr_fr->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3119_fr_fr" class="wp_wpl_properties_field_3119_fr_fr"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3119_fr_fr->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3119_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3119_fr_fr->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3119_fr_fr) ?>', 1);"><div id="elh_wp_wpl_properties_field_3119_fr_fr" class="wp_wpl_properties_field_3119_fr_fr">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3119_fr_fr->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3119_fr_fr->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3119_fr_fr->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3120->Visible) { // field_3120 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3120) == "") { ?>
		<th data-name="field_3120" class="<?php echo $wp_wpl_properties_list->field_3120->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3120" class="wp_wpl_properties_field_3120"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3120->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3120" class="<?php echo $wp_wpl_properties_list->field_3120->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3120) ?>', 1);"><div id="elh_wp_wpl_properties_field_3120" class="wp_wpl_properties_field_3120">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3120->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3120->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3120->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3120_en_us->Visible) { // field_3120_en_us ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3120_en_us) == "") { ?>
		<th data-name="field_3120_en_us" class="<?php echo $wp_wpl_properties_list->field_3120_en_us->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3120_en_us" class="wp_wpl_properties_field_3120_en_us"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3120_en_us->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3120_en_us" class="<?php echo $wp_wpl_properties_list->field_3120_en_us->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3120_en_us) ?>', 1);"><div id="elh_wp_wpl_properties_field_3120_en_us" class="wp_wpl_properties_field_3120_en_us">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3120_en_us->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3120_en_us->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3120_en_us->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3120_fr_fr->Visible) { // field_3120_fr_fr ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3120_fr_fr) == "") { ?>
		<th data-name="field_3120_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3120_fr_fr->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3120_fr_fr" class="wp_wpl_properties_field_3120_fr_fr"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3120_fr_fr->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3120_fr_fr" class="<?php echo $wp_wpl_properties_list->field_3120_fr_fr->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3120_fr_fr) ?>', 1);"><div id="elh_wp_wpl_properties_field_3120_fr_fr" class="wp_wpl_properties_field_3120_fr_fr">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3120_fr_fr->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3120_fr_fr->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3120_fr_fr->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3121->Visible) { // field_3121 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3121) == "") { ?>
		<th data-name="field_3121" class="<?php echo $wp_wpl_properties_list->field_3121->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3121" class="wp_wpl_properties_field_3121"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3121->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3121" class="<?php echo $wp_wpl_properties_list->field_3121->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3121) ?>', 1);"><div id="elh_wp_wpl_properties_field_3121" class="wp_wpl_properties_field_3121">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3121->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3121->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3121->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3122->Visible) { // field_3122 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3122) == "") { ?>
		<th data-name="field_3122" class="<?php echo $wp_wpl_properties_list->field_3122->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3122" class="wp_wpl_properties_field_3122"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3122->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3122" class="<?php echo $wp_wpl_properties_list->field_3122->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3122) ?>', 1);"><div id="elh_wp_wpl_properties_field_3122" class="wp_wpl_properties_field_3122">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3122->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3122->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3122->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3122_si->Visible) { // field_3122_si ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3122_si) == "") { ?>
		<th data-name="field_3122_si" class="<?php echo $wp_wpl_properties_list->field_3122_si->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3122_si" class="wp_wpl_properties_field_3122_si"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3122_si->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3122_si" class="<?php echo $wp_wpl_properties_list->field_3122_si->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3122_si) ?>', 1);"><div id="elh_wp_wpl_properties_field_3122_si" class="wp_wpl_properties_field_3122_si">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3122_si->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3122_si->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3122_si->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3122_unit->Visible) { // field_3122_unit ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3122_unit) == "") { ?>
		<th data-name="field_3122_unit" class="<?php echo $wp_wpl_properties_list->field_3122_unit->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3122_unit" class="wp_wpl_properties_field_3122_unit"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3122_unit->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3122_unit" class="<?php echo $wp_wpl_properties_list->field_3122_unit->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3122_unit) ?>', 1);"><div id="elh_wp_wpl_properties_field_3122_unit" class="wp_wpl_properties_field_3122_unit">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3122_unit->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3122_unit->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3122_unit->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3123->Visible) { // field_3123 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3123) == "") { ?>
		<th data-name="field_3123" class="<?php echo $wp_wpl_properties_list->field_3123->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3123" class="wp_wpl_properties_field_3123"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3123->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3123" class="<?php echo $wp_wpl_properties_list->field_3123->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3123) ?>', 1);"><div id="elh_wp_wpl_properties_field_3123" class="wp_wpl_properties_field_3123">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3123->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3123->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3123->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3124->Visible) { // field_3124 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3124) == "") { ?>
		<th data-name="field_3124" class="<?php echo $wp_wpl_properties_list->field_3124->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3124" class="wp_wpl_properties_field_3124"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3124->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3124" class="<?php echo $wp_wpl_properties_list->field_3124->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3124) ?>', 1);"><div id="elh_wp_wpl_properties_field_3124" class="wp_wpl_properties_field_3124">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3124->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3124->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3124->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3125->Visible) { // field_3125 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3125) == "") { ?>
		<th data-name="field_3125" class="<?php echo $wp_wpl_properties_list->field_3125->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3125" class="wp_wpl_properties_field_3125"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3125->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3125" class="<?php echo $wp_wpl_properties_list->field_3125->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3125) ?>', 1);"><div id="elh_wp_wpl_properties_field_3125" class="wp_wpl_properties_field_3125">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3125->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3125->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3125->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3126->Visible) { // field_3126 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3126) == "") { ?>
		<th data-name="field_3126" class="<?php echo $wp_wpl_properties_list->field_3126->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3126" class="wp_wpl_properties_field_3126"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3126->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3126" class="<?php echo $wp_wpl_properties_list->field_3126->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3126) ?>', 1);"><div id="elh_wp_wpl_properties_field_3126" class="wp_wpl_properties_field_3126">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3126->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3126->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3126->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3127->Visible) { // field_3127 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3127) == "") { ?>
		<th data-name="field_3127" class="<?php echo $wp_wpl_properties_list->field_3127->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3127" class="wp_wpl_properties_field_3127"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3127->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3127" class="<?php echo $wp_wpl_properties_list->field_3127->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3127) ?>', 1);"><div id="elh_wp_wpl_properties_field_3127" class="wp_wpl_properties_field_3127">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3127->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3127->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3127->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3128->Visible) { // field_3128 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3128) == "") { ?>
		<th data-name="field_3128" class="<?php echo $wp_wpl_properties_list->field_3128->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3128" class="wp_wpl_properties_field_3128"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3128->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3128" class="<?php echo $wp_wpl_properties_list->field_3128->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3128) ?>', 1);"><div id="elh_wp_wpl_properties_field_3128" class="wp_wpl_properties_field_3128">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3128->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3128->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3128->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3129->Visible) { // field_3129 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3129) == "") { ?>
		<th data-name="field_3129" class="<?php echo $wp_wpl_properties_list->field_3129->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3129" class="wp_wpl_properties_field_3129"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3129->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3129" class="<?php echo $wp_wpl_properties_list->field_3129->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3129) ?>', 1);"><div id="elh_wp_wpl_properties_field_3129" class="wp_wpl_properties_field_3129">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3129->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3129->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3129->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3130->Visible) { // field_3130 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3130) == "") { ?>
		<th data-name="field_3130" class="<?php echo $wp_wpl_properties_list->field_3130->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3130" class="wp_wpl_properties_field_3130"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3130->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3130" class="<?php echo $wp_wpl_properties_list->field_3130->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3130) ?>', 1);"><div id="elh_wp_wpl_properties_field_3130" class="wp_wpl_properties_field_3130">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3130->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3130->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3130->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3131->Visible) { // field_3131 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3131) == "") { ?>
		<th data-name="field_3131" class="<?php echo $wp_wpl_properties_list->field_3131->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3131" class="wp_wpl_properties_field_3131"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3131->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3131" class="<?php echo $wp_wpl_properties_list->field_3131->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3131) ?>', 1);"><div id="elh_wp_wpl_properties_field_3131" class="wp_wpl_properties_field_3131">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3131->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3131->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3131->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3132->Visible) { // field_3132 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3132) == "") { ?>
		<th data-name="field_3132" class="<?php echo $wp_wpl_properties_list->field_3132->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3132" class="wp_wpl_properties_field_3132"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3132->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3132" class="<?php echo $wp_wpl_properties_list->field_3132->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3132) ?>', 1);"><div id="elh_wp_wpl_properties_field_3132" class="wp_wpl_properties_field_3132">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3132->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3132->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3132->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3133->Visible) { // field_3133 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3133) == "") { ?>
		<th data-name="field_3133" class="<?php echo $wp_wpl_properties_list->field_3133->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3133" class="wp_wpl_properties_field_3133"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3133->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3133" class="<?php echo $wp_wpl_properties_list->field_3133->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3133) ?>', 1);"><div id="elh_wp_wpl_properties_field_3133" class="wp_wpl_properties_field_3133">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3133->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3133->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3133->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3134->Visible) { // field_3134 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3134) == "") { ?>
		<th data-name="field_3134" class="<?php echo $wp_wpl_properties_list->field_3134->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3134" class="wp_wpl_properties_field_3134"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3134->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3134" class="<?php echo $wp_wpl_properties_list->field_3134->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3134) ?>', 1);"><div id="elh_wp_wpl_properties_field_3134" class="wp_wpl_properties_field_3134">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3134->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3134->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3134->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3135->Visible) { // field_3135 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3135) == "") { ?>
		<th data-name="field_3135" class="<?php echo $wp_wpl_properties_list->field_3135->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3135" class="wp_wpl_properties_field_3135"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3135->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3135" class="<?php echo $wp_wpl_properties_list->field_3135->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3135) ?>', 1);"><div id="elh_wp_wpl_properties_field_3135" class="wp_wpl_properties_field_3135">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3135->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3135->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3135->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3136->Visible) { // field_3136 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3136) == "") { ?>
		<th data-name="field_3136" class="<?php echo $wp_wpl_properties_list->field_3136->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3136" class="wp_wpl_properties_field_3136"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3136->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3136" class="<?php echo $wp_wpl_properties_list->field_3136->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3136) ?>', 1);"><div id="elh_wp_wpl_properties_field_3136" class="wp_wpl_properties_field_3136">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3136->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3136->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3136->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3137->Visible) { // field_3137 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3137) == "") { ?>
		<th data-name="field_3137" class="<?php echo $wp_wpl_properties_list->field_3137->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3137" class="wp_wpl_properties_field_3137"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3137->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3137" class="<?php echo $wp_wpl_properties_list->field_3137->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3137) ?>', 1);"><div id="elh_wp_wpl_properties_field_3137" class="wp_wpl_properties_field_3137">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3137->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3137->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3137->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3138->Visible) { // field_3138 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3138) == "") { ?>
		<th data-name="field_3138" class="<?php echo $wp_wpl_properties_list->field_3138->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3138" class="wp_wpl_properties_field_3138"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3138->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3138" class="<?php echo $wp_wpl_properties_list->field_3138->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3138) ?>', 1);"><div id="elh_wp_wpl_properties_field_3138" class="wp_wpl_properties_field_3138">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3138->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3138->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3138->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3139->Visible) { // field_3139 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3139) == "") { ?>
		<th data-name="field_3139" class="<?php echo $wp_wpl_properties_list->field_3139->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3139" class="wp_wpl_properties_field_3139"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3139->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3139" class="<?php echo $wp_wpl_properties_list->field_3139->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3139) ?>', 1);"><div id="elh_wp_wpl_properties_field_3139" class="wp_wpl_properties_field_3139">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3139->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3139->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3139->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3140->Visible) { // field_3140 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3140) == "") { ?>
		<th data-name="field_3140" class="<?php echo $wp_wpl_properties_list->field_3140->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3140" class="wp_wpl_properties_field_3140"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3140->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3140" class="<?php echo $wp_wpl_properties_list->field_3140->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3140) ?>', 1);"><div id="elh_wp_wpl_properties_field_3140" class="wp_wpl_properties_field_3140">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3140->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3140->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3140->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3141->Visible) { // field_3141 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3141) == "") { ?>
		<th data-name="field_3141" class="<?php echo $wp_wpl_properties_list->field_3141->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3141" class="wp_wpl_properties_field_3141"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3141->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3141" class="<?php echo $wp_wpl_properties_list->field_3141->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3141) ?>', 1);"><div id="elh_wp_wpl_properties_field_3141" class="wp_wpl_properties_field_3141">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3141->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3141->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3141->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3142->Visible) { // field_3142 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3142) == "") { ?>
		<th data-name="field_3142" class="<?php echo $wp_wpl_properties_list->field_3142->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3142" class="wp_wpl_properties_field_3142"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3142->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3142" class="<?php echo $wp_wpl_properties_list->field_3142->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3142) ?>', 1);"><div id="elh_wp_wpl_properties_field_3142" class="wp_wpl_properties_field_3142">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3142->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3142->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3142->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3143->Visible) { // field_3143 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3143) == "") { ?>
		<th data-name="field_3143" class="<?php echo $wp_wpl_properties_list->field_3143->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3143" class="wp_wpl_properties_field_3143"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3143->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3143" class="<?php echo $wp_wpl_properties_list->field_3143->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3143) ?>', 1);"><div id="elh_wp_wpl_properties_field_3143" class="wp_wpl_properties_field_3143">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3143->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3143->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3143->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3144->Visible) { // field_3144 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3144) == "") { ?>
		<th data-name="field_3144" class="<?php echo $wp_wpl_properties_list->field_3144->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3144" class="wp_wpl_properties_field_3144"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3144->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3144" class="<?php echo $wp_wpl_properties_list->field_3144->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3144) ?>', 1);"><div id="elh_wp_wpl_properties_field_3144" class="wp_wpl_properties_field_3144">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3144->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3144->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3144->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3145->Visible) { // field_3145 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3145) == "") { ?>
		<th data-name="field_3145" class="<?php echo $wp_wpl_properties_list->field_3145->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3145" class="wp_wpl_properties_field_3145"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3145->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3145" class="<?php echo $wp_wpl_properties_list->field_3145->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3145) ?>', 1);"><div id="elh_wp_wpl_properties_field_3145" class="wp_wpl_properties_field_3145">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3145->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3145->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3145->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3146->Visible) { // field_3146 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3146) == "") { ?>
		<th data-name="field_3146" class="<?php echo $wp_wpl_properties_list->field_3146->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3146" class="wp_wpl_properties_field_3146"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3146->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3146" class="<?php echo $wp_wpl_properties_list->field_3146->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3146) ?>', 1);"><div id="elh_wp_wpl_properties_field_3146" class="wp_wpl_properties_field_3146">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3146->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3146->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3146->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3147->Visible) { // field_3147 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3147) == "") { ?>
		<th data-name="field_3147" class="<?php echo $wp_wpl_properties_list->field_3147->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3147" class="wp_wpl_properties_field_3147"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3147->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3147" class="<?php echo $wp_wpl_properties_list->field_3147->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3147) ?>', 1);"><div id="elh_wp_wpl_properties_field_3147" class="wp_wpl_properties_field_3147">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3147->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3147->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3147->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3148->Visible) { // field_3148 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3148) == "") { ?>
		<th data-name="field_3148" class="<?php echo $wp_wpl_properties_list->field_3148->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3148" class="wp_wpl_properties_field_3148"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3148->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3148" class="<?php echo $wp_wpl_properties_list->field_3148->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3148) ?>', 1);"><div id="elh_wp_wpl_properties_field_3148" class="wp_wpl_properties_field_3148">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3148->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3148->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3148->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3149->Visible) { // field_3149 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3149) == "") { ?>
		<th data-name="field_3149" class="<?php echo $wp_wpl_properties_list->field_3149->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3149" class="wp_wpl_properties_field_3149"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3149->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3149" class="<?php echo $wp_wpl_properties_list->field_3149->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3149) ?>', 1);"><div id="elh_wp_wpl_properties_field_3149" class="wp_wpl_properties_field_3149">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3149->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3149->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3149->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3150->Visible) { // field_3150 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3150) == "") { ?>
		<th data-name="field_3150" class="<?php echo $wp_wpl_properties_list->field_3150->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3150" class="wp_wpl_properties_field_3150"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3150->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3150" class="<?php echo $wp_wpl_properties_list->field_3150->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3150) ?>', 1);"><div id="elh_wp_wpl_properties_field_3150" class="wp_wpl_properties_field_3150">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3150->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3150->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3150->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3151->Visible) { // field_3151 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3151) == "") { ?>
		<th data-name="field_3151" class="<?php echo $wp_wpl_properties_list->field_3151->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3151" class="wp_wpl_properties_field_3151"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3151->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3151" class="<?php echo $wp_wpl_properties_list->field_3151->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3151) ?>', 1);"><div id="elh_wp_wpl_properties_field_3151" class="wp_wpl_properties_field_3151">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3151->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3151->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3151->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3152->Visible) { // field_3152 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3152) == "") { ?>
		<th data-name="field_3152" class="<?php echo $wp_wpl_properties_list->field_3152->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3152" class="wp_wpl_properties_field_3152"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3152->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3152" class="<?php echo $wp_wpl_properties_list->field_3152->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3152) ?>', 1);"><div id="elh_wp_wpl_properties_field_3152" class="wp_wpl_properties_field_3152">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3152->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3152->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3152->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3153->Visible) { // field_3153 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3153) == "") { ?>
		<th data-name="field_3153" class="<?php echo $wp_wpl_properties_list->field_3153->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3153" class="wp_wpl_properties_field_3153"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3153->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3153" class="<?php echo $wp_wpl_properties_list->field_3153->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3153) ?>', 1);"><div id="elh_wp_wpl_properties_field_3153" class="wp_wpl_properties_field_3153">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3153->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3153->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3153->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3154->Visible) { // field_3154 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3154) == "") { ?>
		<th data-name="field_3154" class="<?php echo $wp_wpl_properties_list->field_3154->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3154" class="wp_wpl_properties_field_3154"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3154->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3154" class="<?php echo $wp_wpl_properties_list->field_3154->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3154) ?>', 1);"><div id="elh_wp_wpl_properties_field_3154" class="wp_wpl_properties_field_3154">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3154->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3154->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3154->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3155->Visible) { // field_3155 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3155) == "") { ?>
		<th data-name="field_3155" class="<?php echo $wp_wpl_properties_list->field_3155->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3155" class="wp_wpl_properties_field_3155"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3155->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3155" class="<?php echo $wp_wpl_properties_list->field_3155->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3155) ?>', 1);"><div id="elh_wp_wpl_properties_field_3155" class="wp_wpl_properties_field_3155">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3155->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3155->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3155->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3156->Visible) { // field_3156 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3156) == "") { ?>
		<th data-name="field_3156" class="<?php echo $wp_wpl_properties_list->field_3156->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3156" class="wp_wpl_properties_field_3156"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3156->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3156" class="<?php echo $wp_wpl_properties_list->field_3156->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3156) ?>', 1);"><div id="elh_wp_wpl_properties_field_3156" class="wp_wpl_properties_field_3156">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3156->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3156->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3156->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3157->Visible) { // field_3157 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3157) == "") { ?>
		<th data-name="field_3157" class="<?php echo $wp_wpl_properties_list->field_3157->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3157" class="wp_wpl_properties_field_3157"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3157->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3157" class="<?php echo $wp_wpl_properties_list->field_3157->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3157) ?>', 1);"><div id="elh_wp_wpl_properties_field_3157" class="wp_wpl_properties_field_3157">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3157->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3157->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3157->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3158->Visible) { // field_3158 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3158) == "") { ?>
		<th data-name="field_3158" class="<?php echo $wp_wpl_properties_list->field_3158->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3158" class="wp_wpl_properties_field_3158"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3158->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3158" class="<?php echo $wp_wpl_properties_list->field_3158->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3158) ?>', 1);"><div id="elh_wp_wpl_properties_field_3158" class="wp_wpl_properties_field_3158">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3158->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3158->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3158->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3159->Visible) { // field_3159 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3159) == "") { ?>
		<th data-name="field_3159" class="<?php echo $wp_wpl_properties_list->field_3159->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3159" class="wp_wpl_properties_field_3159"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3159->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3159" class="<?php echo $wp_wpl_properties_list->field_3159->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3159) ?>', 1);"><div id="elh_wp_wpl_properties_field_3159" class="wp_wpl_properties_field_3159">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3159->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3159->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3159->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3160->Visible) { // field_3160 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3160) == "") { ?>
		<th data-name="field_3160" class="<?php echo $wp_wpl_properties_list->field_3160->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3160" class="wp_wpl_properties_field_3160"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3160->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3160" class="<?php echo $wp_wpl_properties_list->field_3160->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3160) ?>', 1);"><div id="elh_wp_wpl_properties_field_3160" class="wp_wpl_properties_field_3160">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3160->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3160->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3160->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3161->Visible) { // field_3161 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3161) == "") { ?>
		<th data-name="field_3161" class="<?php echo $wp_wpl_properties_list->field_3161->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3161" class="wp_wpl_properties_field_3161"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3161->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3161" class="<?php echo $wp_wpl_properties_list->field_3161->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3161) ?>', 1);"><div id="elh_wp_wpl_properties_field_3161" class="wp_wpl_properties_field_3161">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3161->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3161->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3161->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3162->Visible) { // field_3162 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3162) == "") { ?>
		<th data-name="field_3162" class="<?php echo $wp_wpl_properties_list->field_3162->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3162" class="wp_wpl_properties_field_3162"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3162->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3162" class="<?php echo $wp_wpl_properties_list->field_3162->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3162) ?>', 1);"><div id="elh_wp_wpl_properties_field_3162" class="wp_wpl_properties_field_3162">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3162->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3162->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3162->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3163->Visible) { // field_3163 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3163) == "") { ?>
		<th data-name="field_3163" class="<?php echo $wp_wpl_properties_list->field_3163->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3163" class="wp_wpl_properties_field_3163"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3163->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3163" class="<?php echo $wp_wpl_properties_list->field_3163->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3163) ?>', 1);"><div id="elh_wp_wpl_properties_field_3163" class="wp_wpl_properties_field_3163">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3163->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3163->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3163->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3164->Visible) { // field_3164 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3164) == "") { ?>
		<th data-name="field_3164" class="<?php echo $wp_wpl_properties_list->field_3164->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3164" class="wp_wpl_properties_field_3164"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3164->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3164" class="<?php echo $wp_wpl_properties_list->field_3164->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3164) ?>', 1);"><div id="elh_wp_wpl_properties_field_3164" class="wp_wpl_properties_field_3164">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3164->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3164->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3164->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3165->Visible) { // field_3165 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3165) == "") { ?>
		<th data-name="field_3165" class="<?php echo $wp_wpl_properties_list->field_3165->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3165" class="wp_wpl_properties_field_3165"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3165->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3165" class="<?php echo $wp_wpl_properties_list->field_3165->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3165) ?>', 1);"><div id="elh_wp_wpl_properties_field_3165" class="wp_wpl_properties_field_3165">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3165->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3165->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3165->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3166->Visible) { // field_3166 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3166) == "") { ?>
		<th data-name="field_3166" class="<?php echo $wp_wpl_properties_list->field_3166->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3166" class="wp_wpl_properties_field_3166"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3166->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3166" class="<?php echo $wp_wpl_properties_list->field_3166->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3166) ?>', 1);"><div id="elh_wp_wpl_properties_field_3166" class="wp_wpl_properties_field_3166">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3166->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3166->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3166->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3167->Visible) { // field_3167 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3167) == "") { ?>
		<th data-name="field_3167" class="<?php echo $wp_wpl_properties_list->field_3167->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3167" class="wp_wpl_properties_field_3167"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3167->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3167" class="<?php echo $wp_wpl_properties_list->field_3167->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3167) ?>', 1);"><div id="elh_wp_wpl_properties_field_3167" class="wp_wpl_properties_field_3167">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3167->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3167->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3167->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3168->Visible) { // field_3168 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3168) == "") { ?>
		<th data-name="field_3168" class="<?php echo $wp_wpl_properties_list->field_3168->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3168" class="wp_wpl_properties_field_3168"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3168->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3168" class="<?php echo $wp_wpl_properties_list->field_3168->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3168) ?>', 1);"><div id="elh_wp_wpl_properties_field_3168" class="wp_wpl_properties_field_3168">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3168->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3168->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3168->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3169->Visible) { // field_3169 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3169) == "") { ?>
		<th data-name="field_3169" class="<?php echo $wp_wpl_properties_list->field_3169->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3169" class="wp_wpl_properties_field_3169"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3169->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3169" class="<?php echo $wp_wpl_properties_list->field_3169->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3169) ?>', 1);"><div id="elh_wp_wpl_properties_field_3169" class="wp_wpl_properties_field_3169">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3169->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3169->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3169->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3170->Visible) { // field_3170 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3170) == "") { ?>
		<th data-name="field_3170" class="<?php echo $wp_wpl_properties_list->field_3170->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3170" class="wp_wpl_properties_field_3170"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3170->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3170" class="<?php echo $wp_wpl_properties_list->field_3170->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3170) ?>', 1);"><div id="elh_wp_wpl_properties_field_3170" class="wp_wpl_properties_field_3170">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3170->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3170->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3170->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3171->Visible) { // field_3171 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3171) == "") { ?>
		<th data-name="field_3171" class="<?php echo $wp_wpl_properties_list->field_3171->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3171" class="wp_wpl_properties_field_3171"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3171->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3171" class="<?php echo $wp_wpl_properties_list->field_3171->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3171) ?>', 1);"><div id="elh_wp_wpl_properties_field_3171" class="wp_wpl_properties_field_3171">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3171->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3171->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3171->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3172->Visible) { // field_3172 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3172) == "") { ?>
		<th data-name="field_3172" class="<?php echo $wp_wpl_properties_list->field_3172->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3172" class="wp_wpl_properties_field_3172"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3172->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3172" class="<?php echo $wp_wpl_properties_list->field_3172->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3172) ?>', 1);"><div id="elh_wp_wpl_properties_field_3172" class="wp_wpl_properties_field_3172">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3172->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3172->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3172->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3173->Visible) { // field_3173 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3173) == "") { ?>
		<th data-name="field_3173" class="<?php echo $wp_wpl_properties_list->field_3173->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3173" class="wp_wpl_properties_field_3173"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3173->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3173" class="<?php echo $wp_wpl_properties_list->field_3173->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3173) ?>', 1);"><div id="elh_wp_wpl_properties_field_3173" class="wp_wpl_properties_field_3173">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3173->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3173->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3173->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3173_si->Visible) { // field_3173_si ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3173_si) == "") { ?>
		<th data-name="field_3173_si" class="<?php echo $wp_wpl_properties_list->field_3173_si->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3173_si" class="wp_wpl_properties_field_3173_si"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3173_si->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3173_si" class="<?php echo $wp_wpl_properties_list->field_3173_si->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3173_si) ?>', 1);"><div id="elh_wp_wpl_properties_field_3173_si" class="wp_wpl_properties_field_3173_si">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3173_si->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3173_si->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3173_si->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->field_3173_unit->Visible) { // field_3173_unit ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3173_unit) == "") { ?>
		<th data-name="field_3173_unit" class="<?php echo $wp_wpl_properties_list->field_3173_unit->headerCellClass() ?>"><div id="elh_wp_wpl_properties_field_3173_unit" class="wp_wpl_properties_field_3173_unit"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3173_unit->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="field_3173_unit" class="<?php echo $wp_wpl_properties_list->field_3173_unit->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->field_3173_unit) ?>', 1);"><div id="elh_wp_wpl_properties_field_3173_unit" class="wp_wpl_properties_field_3173_unit">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->field_3173_unit->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->field_3173_unit->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->field_3173_unit->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($wp_wpl_properties_list->f_3174->Visible) { // f_3174 ?>
	<?php if ($wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3174) == "") { ?>
		<th data-name="f_3174" class="<?php echo $wp_wpl_properties_list->f_3174->headerCellClass() ?>"><div id="elh_wp_wpl_properties_f_3174" class="wp_wpl_properties_f_3174"><div class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3174->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="f_3174" class="<?php echo $wp_wpl_properties_list->f_3174->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $wp_wpl_properties_list->SortUrl($wp_wpl_properties_list->f_3174) ?>', 1);"><div id="elh_wp_wpl_properties_f_3174" class="wp_wpl_properties_f_3174">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $wp_wpl_properties_list->f_3174->caption() ?></span><span class="ew-table-header-sort"><?php if ($wp_wpl_properties_list->f_3174->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($wp_wpl_properties_list->f_3174->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php

// Render list options (header, right)
$wp_wpl_properties_list->ListOptions->render("header", "right");
?>
	</tr>
</thead>
<tbody>
<?php
if ($wp_wpl_properties_list->ExportAll && $wp_wpl_properties_list->isExport()) {
	$wp_wpl_properties_list->StopRecord = $wp_wpl_properties_list->TotalRecords;
} else {

	// Set the last record to display
	if ($wp_wpl_properties_list->TotalRecords > $wp_wpl_properties_list->StartRecord + $wp_wpl_properties_list->DisplayRecords - 1)
		$wp_wpl_properties_list->StopRecord = $wp_wpl_properties_list->StartRecord + $wp_wpl_properties_list->DisplayRecords - 1;
	else
		$wp_wpl_properties_list->StopRecord = $wp_wpl_properties_list->TotalRecords;
}
$wp_wpl_properties_list->RecordCount = $wp_wpl_properties_list->StartRecord - 1;
if ($wp_wpl_properties_list->Recordset && !$wp_wpl_properties_list->Recordset->EOF) {
	$wp_wpl_properties_list->Recordset->moveFirst();
	$selectLimit = $wp_wpl_properties_list->UseSelectLimit;
	if (!$selectLimit && $wp_wpl_properties_list->StartRecord > 1)
		$wp_wpl_properties_list->Recordset->move($wp_wpl_properties_list->StartRecord - 1);
} elseif (!$wp_wpl_properties->AllowAddDeleteRow && $wp_wpl_properties_list->StopRecord == 0) {
	$wp_wpl_properties_list->StopRecord = $wp_wpl_properties->GridAddRowCount;
}

// Initialize aggregate
$wp_wpl_properties->RowType = ROWTYPE_AGGREGATEINIT;
$wp_wpl_properties->resetAttributes();
$wp_wpl_properties_list->renderRow();
while ($wp_wpl_properties_list->RecordCount < $wp_wpl_properties_list->StopRecord) {
	$wp_wpl_properties_list->RecordCount++;
	if ($wp_wpl_properties_list->RecordCount >= $wp_wpl_properties_list->StartRecord) {
		$wp_wpl_properties_list->RowCount++;

		// Set up key count
		$wp_wpl_properties_list->KeyCount = $wp_wpl_properties_list->RowIndex;

		// Init row class and style
		$wp_wpl_properties->resetAttributes();
		$wp_wpl_properties->CssClass = "";
		if ($wp_wpl_properties_list->isGridAdd()) {
		} else {
			$wp_wpl_properties_list->loadRowValues($wp_wpl_properties_list->Recordset); // Load row values
		}
		$wp_wpl_properties->RowType = ROWTYPE_VIEW; // Render view

		// Set up row id / data-rowindex
		$wp_wpl_properties->RowAttrs->merge(["data-rowindex" => $wp_wpl_properties_list->RowCount, "id" => "r" . $wp_wpl_properties_list->RowCount . "_wp_wpl_properties", "data-rowtype" => $wp_wpl_properties->RowType]);

		// Render row
		$wp_wpl_properties_list->renderRow();

		// Render list options
		$wp_wpl_properties_list->renderListOptions();
?>
	<tr <?php echo $wp_wpl_properties->rowAttributes() ?>>
<?php

// Render list options (body, left)
$wp_wpl_properties_list->ListOptions->render("body", "left", $wp_wpl_properties_list->RowCount);
?>
	<?php if ($wp_wpl_properties_list->id->Visible) { // id ?>
		<td data-name="id" <?php echo $wp_wpl_properties_list->id->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_id">
<span<?php echo $wp_wpl_properties_list->id->viewAttributes() ?>><?php echo $wp_wpl_properties_list->id->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->kind->Visible) { // kind ?>
		<td data-name="kind" <?php echo $wp_wpl_properties_list->kind->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_kind">
<span<?php echo $wp_wpl_properties_list->kind->viewAttributes() ?>><?php echo $wp_wpl_properties_list->kind->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->deleted->Visible) { // deleted ?>
		<td data-name="deleted" <?php echo $wp_wpl_properties_list->deleted->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_deleted">
<span<?php echo $wp_wpl_properties_list->deleted->viewAttributes() ?>><div class="custom-control custom-checkbox d-inline-block"><input type="checkbox" id="x_deleted" class="custom-control-input" value="<?php echo $wp_wpl_properties_list->deleted->getViewValue() ?>" disabled<?php if (ConvertToBool($wp_wpl_properties_list->deleted->CurrentValue)) { ?> checked<?php } ?>><label class="custom-control-label" for="x_deleted"></label></div></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->mls_id->Visible) { // mls_id ?>
		<td data-name="mls_id" <?php echo $wp_wpl_properties_list->mls_id->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_mls_id">
<span<?php echo $wp_wpl_properties_list->mls_id->viewAttributes() ?>><?php echo $wp_wpl_properties_list->mls_id->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->mls_id_num->Visible) { // mls_id_num ?>
		<td data-name="mls_id_num" <?php echo $wp_wpl_properties_list->mls_id_num->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_mls_id_num">
<span<?php echo $wp_wpl_properties_list->mls_id_num->viewAttributes() ?>><?php echo $wp_wpl_properties_list->mls_id_num->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->parent->Visible) { // parent ?>
		<td data-name="parent" <?php echo $wp_wpl_properties_list->parent->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_parent">
<span<?php echo $wp_wpl_properties_list->parent->viewAttributes() ?>><?php echo $wp_wpl_properties_list->parent->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->pic_numb->Visible) { // pic_numb ?>
		<td data-name="pic_numb" <?php echo $wp_wpl_properties_list->pic_numb->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_pic_numb">
<span<?php echo $wp_wpl_properties_list->pic_numb->viewAttributes() ?>><?php echo $wp_wpl_properties_list->pic_numb->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->user_id->Visible) { // user_id ?>
		<td data-name="user_id" <?php echo $wp_wpl_properties_list->user_id->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_user_id">
<span<?php echo $wp_wpl_properties_list->user_id->viewAttributes() ?>><?php echo $wp_wpl_properties_list->user_id->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->listing->Visible) { // listing ?>
		<td data-name="listing" <?php echo $wp_wpl_properties_list->listing->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_listing">
<span<?php echo $wp_wpl_properties_list->listing->viewAttributes() ?>><?php echo $wp_wpl_properties_list->listing->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->property_type->Visible) { // property_type ?>
		<td data-name="property_type" <?php echo $wp_wpl_properties_list->property_type->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_property_type">
<span<?php echo $wp_wpl_properties_list->property_type->viewAttributes() ?>><?php echo $wp_wpl_properties_list->property_type->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->location1_id->Visible) { // location1_id ?>
		<td data-name="location1_id" <?php echo $wp_wpl_properties_list->location1_id->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_location1_id">
<span<?php echo $wp_wpl_properties_list->location1_id->viewAttributes() ?>><?php echo $wp_wpl_properties_list->location1_id->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->location2_id->Visible) { // location2_id ?>
		<td data-name="location2_id" <?php echo $wp_wpl_properties_list->location2_id->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_location2_id">
<span<?php echo $wp_wpl_properties_list->location2_id->viewAttributes() ?>><?php echo $wp_wpl_properties_list->location2_id->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->location3_id->Visible) { // location3_id ?>
		<td data-name="location3_id" <?php echo $wp_wpl_properties_list->location3_id->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_location3_id">
<span<?php echo $wp_wpl_properties_list->location3_id->viewAttributes() ?>><?php echo $wp_wpl_properties_list->location3_id->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->location4_id->Visible) { // location4_id ?>
		<td data-name="location4_id" <?php echo $wp_wpl_properties_list->location4_id->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_location4_id">
<span<?php echo $wp_wpl_properties_list->location4_id->viewAttributes() ?>><?php echo $wp_wpl_properties_list->location4_id->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->location5_id->Visible) { // location5_id ?>
		<td data-name="location5_id" <?php echo $wp_wpl_properties_list->location5_id->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_location5_id">
<span<?php echo $wp_wpl_properties_list->location5_id->viewAttributes() ?>><?php echo $wp_wpl_properties_list->location5_id->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->location6_id->Visible) { // location6_id ?>
		<td data-name="location6_id" <?php echo $wp_wpl_properties_list->location6_id->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_location6_id">
<span<?php echo $wp_wpl_properties_list->location6_id->viewAttributes() ?>><?php echo $wp_wpl_properties_list->location6_id->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->location7_id->Visible) { // location7_id ?>
		<td data-name="location7_id" <?php echo $wp_wpl_properties_list->location7_id->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_location7_id">
<span<?php echo $wp_wpl_properties_list->location7_id->viewAttributes() ?>><?php echo $wp_wpl_properties_list->location7_id->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->location1_name->Visible) { // location1_name ?>
		<td data-name="location1_name" <?php echo $wp_wpl_properties_list->location1_name->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_location1_name">
<span<?php echo $wp_wpl_properties_list->location1_name->viewAttributes() ?>><?php echo $wp_wpl_properties_list->location1_name->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->location2_name->Visible) { // location2_name ?>
		<td data-name="location2_name" <?php echo $wp_wpl_properties_list->location2_name->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_location2_name">
<span<?php echo $wp_wpl_properties_list->location2_name->viewAttributes() ?>><?php echo $wp_wpl_properties_list->location2_name->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->location3_name->Visible) { // location3_name ?>
		<td data-name="location3_name" <?php echo $wp_wpl_properties_list->location3_name->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_location3_name">
<span<?php echo $wp_wpl_properties_list->location3_name->viewAttributes() ?>><?php echo $wp_wpl_properties_list->location3_name->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->location4_name->Visible) { // location4_name ?>
		<td data-name="location4_name" <?php echo $wp_wpl_properties_list->location4_name->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_location4_name">
<span<?php echo $wp_wpl_properties_list->location4_name->viewAttributes() ?>><?php echo $wp_wpl_properties_list->location4_name->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->location5_name->Visible) { // location5_name ?>
		<td data-name="location5_name" <?php echo $wp_wpl_properties_list->location5_name->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_location5_name">
<span<?php echo $wp_wpl_properties_list->location5_name->viewAttributes() ?>><?php echo $wp_wpl_properties_list->location5_name->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->location6_name->Visible) { // location6_name ?>
		<td data-name="location6_name" <?php echo $wp_wpl_properties_list->location6_name->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_location6_name">
<span<?php echo $wp_wpl_properties_list->location6_name->viewAttributes() ?>><?php echo $wp_wpl_properties_list->location6_name->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->location7_name->Visible) { // location7_name ?>
		<td data-name="location7_name" <?php echo $wp_wpl_properties_list->location7_name->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_location7_name">
<span<?php echo $wp_wpl_properties_list->location7_name->viewAttributes() ?>><?php echo $wp_wpl_properties_list->location7_name->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->show_address->Visible) { // show_address ?>
		<td data-name="show_address" <?php echo $wp_wpl_properties_list->show_address->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_show_address">
<span<?php echo $wp_wpl_properties_list->show_address->viewAttributes() ?>><?php echo $wp_wpl_properties_list->show_address->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->show_marker->Visible) { // show_marker ?>
		<td data-name="show_marker" <?php echo $wp_wpl_properties_list->show_marker->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_show_marker">
<span<?php echo $wp_wpl_properties_list->show_marker->viewAttributes() ?>><?php echo $wp_wpl_properties_list->show_marker->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->price->Visible) { // price ?>
		<td data-name="price" <?php echo $wp_wpl_properties_list->price->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_price">
<span<?php echo $wp_wpl_properties_list->price->viewAttributes() ?>><?php echo $wp_wpl_properties_list->price->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->price_unit->Visible) { // price_unit ?>
		<td data-name="price_unit" <?php echo $wp_wpl_properties_list->price_unit->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_price_unit">
<span<?php echo $wp_wpl_properties_list->price_unit->viewAttributes() ?>><?php echo $wp_wpl_properties_list->price_unit->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->price_si->Visible) { // price_si ?>
		<td data-name="price_si" <?php echo $wp_wpl_properties_list->price_si->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_price_si">
<span<?php echo $wp_wpl_properties_list->price_si->viewAttributes() ?>><?php echo $wp_wpl_properties_list->price_si->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->price_period->Visible) { // price_period ?>
		<td data-name="price_period" <?php echo $wp_wpl_properties_list->price_period->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_price_period">
<span<?php echo $wp_wpl_properties_list->price_period->viewAttributes() ?>><?php echo $wp_wpl_properties_list->price_period->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->bedrooms->Visible) { // bedrooms ?>
		<td data-name="bedrooms" <?php echo $wp_wpl_properties_list->bedrooms->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_bedrooms">
<span<?php echo $wp_wpl_properties_list->bedrooms->viewAttributes() ?>><?php echo $wp_wpl_properties_list->bedrooms->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->rooms->Visible) { // rooms ?>
		<td data-name="rooms" <?php echo $wp_wpl_properties_list->rooms->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_rooms">
<span<?php echo $wp_wpl_properties_list->rooms->viewAttributes() ?>><?php echo $wp_wpl_properties_list->rooms->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->bathrooms->Visible) { // bathrooms ?>
		<td data-name="bathrooms" <?php echo $wp_wpl_properties_list->bathrooms->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_bathrooms">
<span<?php echo $wp_wpl_properties_list->bathrooms->viewAttributes() ?>><?php echo $wp_wpl_properties_list->bathrooms->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->living_area->Visible) { // living_area ?>
		<td data-name="living_area" <?php echo $wp_wpl_properties_list->living_area->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_living_area">
<span<?php echo $wp_wpl_properties_list->living_area->viewAttributes() ?>><?php echo $wp_wpl_properties_list->living_area->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->living_area_unit->Visible) { // living_area_unit ?>
		<td data-name="living_area_unit" <?php echo $wp_wpl_properties_list->living_area_unit->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_living_area_unit">
<span<?php echo $wp_wpl_properties_list->living_area_unit->viewAttributes() ?>><?php echo $wp_wpl_properties_list->living_area_unit->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->living_area_si->Visible) { // living_area_si ?>
		<td data-name="living_area_si" <?php echo $wp_wpl_properties_list->living_area_si->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_living_area_si">
<span<?php echo $wp_wpl_properties_list->living_area_si->viewAttributes() ?>><?php echo $wp_wpl_properties_list->living_area_si->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->lot_area->Visible) { // lot_area ?>
		<td data-name="lot_area" <?php echo $wp_wpl_properties_list->lot_area->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_lot_area">
<span<?php echo $wp_wpl_properties_list->lot_area->viewAttributes() ?>><?php echo $wp_wpl_properties_list->lot_area->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->lot_area_unit->Visible) { // lot_area_unit ?>
		<td data-name="lot_area_unit" <?php echo $wp_wpl_properties_list->lot_area_unit->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_lot_area_unit">
<span<?php echo $wp_wpl_properties_list->lot_area_unit->viewAttributes() ?>><?php echo $wp_wpl_properties_list->lot_area_unit->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->lot_area_si->Visible) { // lot_area_si ?>
		<td data-name="lot_area_si" <?php echo $wp_wpl_properties_list->lot_area_si->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_lot_area_si">
<span<?php echo $wp_wpl_properties_list->lot_area_si->viewAttributes() ?>><?php echo $wp_wpl_properties_list->lot_area_si->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->googlemap_lt->Visible) { // googlemap_lt ?>
		<td data-name="googlemap_lt" <?php echo $wp_wpl_properties_list->googlemap_lt->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_googlemap_lt">
<span<?php echo $wp_wpl_properties_list->googlemap_lt->viewAttributes() ?>><?php echo $wp_wpl_properties_list->googlemap_lt->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->googlemap_ln->Visible) { // googlemap_ln ?>
		<td data-name="googlemap_ln" <?php echo $wp_wpl_properties_list->googlemap_ln->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_googlemap_ln">
<span<?php echo $wp_wpl_properties_list->googlemap_ln->viewAttributes() ?>><?php echo $wp_wpl_properties_list->googlemap_ln->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->finalized->Visible) { // finalized ?>
		<td data-name="finalized" <?php echo $wp_wpl_properties_list->finalized->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_finalized">
<span<?php echo $wp_wpl_properties_list->finalized->viewAttributes() ?>><?php echo $wp_wpl_properties_list->finalized->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->add_date->Visible) { // add_date ?>
		<td data-name="add_date" <?php echo $wp_wpl_properties_list->add_date->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_add_date">
<span<?php echo $wp_wpl_properties_list->add_date->viewAttributes() ?>><?php echo $wp_wpl_properties_list->add_date->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->last_finalize_date->Visible) { // last_finalize_date ?>
		<td data-name="last_finalize_date" <?php echo $wp_wpl_properties_list->last_finalize_date->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_last_finalize_date">
<span<?php echo $wp_wpl_properties_list->last_finalize_date->viewAttributes() ?>><?php echo $wp_wpl_properties_list->last_finalize_date->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->expire_days->Visible) { // expire_days ?>
		<td data-name="expire_days" <?php echo $wp_wpl_properties_list->expire_days->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_expire_days">
<span<?php echo $wp_wpl_properties_list->expire_days->viewAttributes() ?>><?php echo $wp_wpl_properties_list->expire_days->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->confirmed->Visible) { // confirmed ?>
		<td data-name="confirmed" <?php echo $wp_wpl_properties_list->confirmed->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_confirmed">
<span<?php echo $wp_wpl_properties_list->confirmed->viewAttributes() ?>><?php echo $wp_wpl_properties_list->confirmed->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->expired->Visible) { // expired ?>
		<td data-name="expired" <?php echo $wp_wpl_properties_list->expired->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_expired">
<span<?php echo $wp_wpl_properties_list->expired->viewAttributes() ?>><?php echo $wp_wpl_properties_list->expired->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->build_year->Visible) { // build_year ?>
		<td data-name="build_year" <?php echo $wp_wpl_properties_list->build_year->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_build_year">
<span<?php echo $wp_wpl_properties_list->build_year->viewAttributes() ?>><?php echo $wp_wpl_properties_list->build_year->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->zip_id->Visible) { // zip_id ?>
		<td data-name="zip_id" <?php echo $wp_wpl_properties_list->zip_id->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_zip_id">
<span<?php echo $wp_wpl_properties_list->zip_id->viewAttributes() ?>><?php echo $wp_wpl_properties_list->zip_id->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->zip_name->Visible) { // zip_name ?>
		<td data-name="zip_name" <?php echo $wp_wpl_properties_list->zip_name->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_zip_name">
<span<?php echo $wp_wpl_properties_list->zip_name->viewAttributes() ?>><?php echo $wp_wpl_properties_list->zip_name->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->last_modified_time_stamp->Visible) { // last_modified_time_stamp ?>
		<td data-name="last_modified_time_stamp" <?php echo $wp_wpl_properties_list->last_modified_time_stamp->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_last_modified_time_stamp">
<span<?php echo $wp_wpl_properties_list->last_modified_time_stamp->viewAttributes() ?>><?php echo $wp_wpl_properties_list->last_modified_time_stamp->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->post_code->Visible) { // post_code ?>
		<td data-name="post_code" <?php echo $wp_wpl_properties_list->post_code->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_post_code">
<span<?php echo $wp_wpl_properties_list->post_code->viewAttributes() ?>><?php echo $wp_wpl_properties_list->post_code->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->meta_description_manual->Visible) { // meta_description_manual ?>
		<td data-name="meta_description_manual" <?php echo $wp_wpl_properties_list->meta_description_manual->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_meta_description_manual">
<span<?php echo $wp_wpl_properties_list->meta_description_manual->viewAttributes() ?>><?php echo $wp_wpl_properties_list->meta_description_manual->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->meta_keywords_manual->Visible) { // meta_keywords_manual ?>
		<td data-name="meta_keywords_manual" <?php echo $wp_wpl_properties_list->meta_keywords_manual->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_meta_keywords_manual">
<span<?php echo $wp_wpl_properties_list->meta_keywords_manual->viewAttributes() ?>><?php echo $wp_wpl_properties_list->meta_keywords_manual->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->street_no->Visible) { // street_no ?>
		<td data-name="street_no" <?php echo $wp_wpl_properties_list->street_no->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_street_no">
<span<?php echo $wp_wpl_properties_list->street_no->viewAttributes() ?>><?php echo $wp_wpl_properties_list->street_no->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->sp_featured->Visible) { // sp_featured ?>
		<td data-name="sp_featured" <?php echo $wp_wpl_properties_list->sp_featured->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_sp_featured">
<span<?php echo $wp_wpl_properties_list->sp_featured->viewAttributes() ?>><?php echo $wp_wpl_properties_list->sp_featured->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->sp_hot->Visible) { // sp_hot ?>
		<td data-name="sp_hot" <?php echo $wp_wpl_properties_list->sp_hot->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_sp_hot">
<span<?php echo $wp_wpl_properties_list->sp_hot->viewAttributes() ?>><?php echo $wp_wpl_properties_list->sp_hot->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->sp_openhouse->Visible) { // sp_openhouse ?>
		<td data-name="sp_openhouse" <?php echo $wp_wpl_properties_list->sp_openhouse->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_sp_openhouse">
<span<?php echo $wp_wpl_properties_list->sp_openhouse->viewAttributes() ?>><?php echo $wp_wpl_properties_list->sp_openhouse->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->sp_forclosure->Visible) { // sp_forclosure ?>
		<td data-name="sp_forclosure" <?php echo $wp_wpl_properties_list->sp_forclosure->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_sp_forclosure">
<span<?php echo $wp_wpl_properties_list->sp_forclosure->viewAttributes() ?>><?php echo $wp_wpl_properties_list->sp_forclosure->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->location_text->Visible) { // location_text ?>
		<td data-name="location_text" <?php echo $wp_wpl_properties_list->location_text->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_location_text">
<span<?php echo $wp_wpl_properties_list->location_text->viewAttributes() ?>><?php echo $wp_wpl_properties_list->location_text->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_42->Visible) { // field_42 ?>
		<td data-name="field_42" <?php echo $wp_wpl_properties_list->field_42->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_42">
<span<?php echo $wp_wpl_properties_list->field_42->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_42->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_312->Visible) { // field_312 ?>
		<td data-name="field_312" <?php echo $wp_wpl_properties_list->field_312->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_312">
<span<?php echo $wp_wpl_properties_list->field_312->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_312->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_313->Visible) { // field_313 ?>
		<td data-name="field_313" <?php echo $wp_wpl_properties_list->field_313->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_313">
<span<?php echo $wp_wpl_properties_list->field_313->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_313->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_7->Visible) { // field_7 ?>
		<td data-name="field_7" <?php echo $wp_wpl_properties_list->field_7->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_7">
<span<?php echo $wp_wpl_properties_list->field_7->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_7->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_103->Visible) { // n_103 ?>
		<td data-name="n_103" <?php echo $wp_wpl_properties_list->n_103->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_103">
<span<?php echo $wp_wpl_properties_list->n_103->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_103->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_103_distance->Visible) { // n_103_distance ?>
		<td data-name="n_103_distance" <?php echo $wp_wpl_properties_list->n_103_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_103_distance">
<span<?php echo $wp_wpl_properties_list->n_103_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_103_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_103_distance_by->Visible) { // n_103_distance_by ?>
		<td data-name="n_103_distance_by" <?php echo $wp_wpl_properties_list->n_103_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_103_distance_by">
<span<?php echo $wp_wpl_properties_list->n_103_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_103_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_105->Visible) { // n_105 ?>
		<td data-name="n_105" <?php echo $wp_wpl_properties_list->n_105->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_105">
<span<?php echo $wp_wpl_properties_list->n_105->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_105->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_105_distance->Visible) { // n_105_distance ?>
		<td data-name="n_105_distance" <?php echo $wp_wpl_properties_list->n_105_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_105_distance">
<span<?php echo $wp_wpl_properties_list->n_105_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_105_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_105_distance_by->Visible) { // n_105_distance_by ?>
		<td data-name="n_105_distance_by" <?php echo $wp_wpl_properties_list->n_105_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_105_distance_by">
<span<?php echo $wp_wpl_properties_list->n_105_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_105_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_107->Visible) { // n_107 ?>
		<td data-name="n_107" <?php echo $wp_wpl_properties_list->n_107->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_107">
<span<?php echo $wp_wpl_properties_list->n_107->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_107->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_107_distance->Visible) { // n_107_distance ?>
		<td data-name="n_107_distance" <?php echo $wp_wpl_properties_list->n_107_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_107_distance">
<span<?php echo $wp_wpl_properties_list->n_107_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_107_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_107_distance_by->Visible) { // n_107_distance_by ?>
		<td data-name="n_107_distance_by" <?php echo $wp_wpl_properties_list->n_107_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_107_distance_by">
<span<?php echo $wp_wpl_properties_list->n_107_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_107_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_108->Visible) { // n_108 ?>
		<td data-name="n_108" <?php echo $wp_wpl_properties_list->n_108->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_108">
<span<?php echo $wp_wpl_properties_list->n_108->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_108->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_108_distance->Visible) { // n_108_distance ?>
		<td data-name="n_108_distance" <?php echo $wp_wpl_properties_list->n_108_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_108_distance">
<span<?php echo $wp_wpl_properties_list->n_108_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_108_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_108_distance_by->Visible) { // n_108_distance_by ?>
		<td data-name="n_108_distance_by" <?php echo $wp_wpl_properties_list->n_108_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_108_distance_by">
<span<?php echo $wp_wpl_properties_list->n_108_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_108_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_109->Visible) { // n_109 ?>
		<td data-name="n_109" <?php echo $wp_wpl_properties_list->n_109->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_109">
<span<?php echo $wp_wpl_properties_list->n_109->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_109->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_109_distance->Visible) { // n_109_distance ?>
		<td data-name="n_109_distance" <?php echo $wp_wpl_properties_list->n_109_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_109_distance">
<span<?php echo $wp_wpl_properties_list->n_109_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_109_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_109_distance_by->Visible) { // n_109_distance_by ?>
		<td data-name="n_109_distance_by" <?php echo $wp_wpl_properties_list->n_109_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_109_distance_by">
<span<?php echo $wp_wpl_properties_list->n_109_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_109_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_131->Visible) { // f_131 ?>
		<td data-name="f_131" <?php echo $wp_wpl_properties_list->f_131->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_131">
<span<?php echo $wp_wpl_properties_list->f_131->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_131->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_137->Visible) { // f_137 ?>
		<td data-name="f_137" <?php echo $wp_wpl_properties_list->f_137->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_137">
<span<?php echo $wp_wpl_properties_list->f_137->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_137->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_139->Visible) { // f_139 ?>
		<td data-name="f_139" <?php echo $wp_wpl_properties_list->f_139->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_139">
<span<?php echo $wp_wpl_properties_list->f_139->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_139->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_144->Visible) { // f_144 ?>
		<td data-name="f_144" <?php echo $wp_wpl_properties_list->f_144->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_144">
<span<?php echo $wp_wpl_properties_list->f_144->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_144->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_146->Visible) { // f_146 ?>
		<td data-name="f_146" <?php echo $wp_wpl_properties_list->f_146->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_146">
<span<?php echo $wp_wpl_properties_list->f_146->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_146->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_149->Visible) { // f_149 ?>
		<td data-name="f_149" <?php echo $wp_wpl_properties_list->f_149->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_149">
<span<?php echo $wp_wpl_properties_list->f_149->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_149->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_150->Visible) { // f_150 ?>
		<td data-name="f_150" <?php echo $wp_wpl_properties_list->f_150->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_150">
<span<?php echo $wp_wpl_properties_list->f_150->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_150->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_156->Visible) { // f_156 ?>
		<td data-name="f_156" <?php echo $wp_wpl_properties_list->f_156->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_156">
<span<?php echo $wp_wpl_properties_list->f_156->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_156->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_157->Visible) { // f_157 ?>
		<td data-name="f_157" <?php echo $wp_wpl_properties_list->f_157->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_157">
<span<?php echo $wp_wpl_properties_list->f_157->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_157->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_159->Visible) { // f_159 ?>
		<td data-name="f_159" <?php echo $wp_wpl_properties_list->f_159->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_159">
<span<?php echo $wp_wpl_properties_list->f_159->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_159->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_161->Visible) { // f_161 ?>
		<td data-name="f_161" <?php echo $wp_wpl_properties_list->f_161->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_161">
<span<?php echo $wp_wpl_properties_list->f_161->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_161->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_163->Visible) { // f_163 ?>
		<td data-name="f_163" <?php echo $wp_wpl_properties_list->f_163->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_163">
<span<?php echo $wp_wpl_properties_list->f_163->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_163->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_165->Visible) { // f_165 ?>
		<td data-name="f_165" <?php echo $wp_wpl_properties_list->f_165->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_165">
<span<?php echo $wp_wpl_properties_list->f_165->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_165->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_166->Visible) { // f_166 ?>
		<td data-name="f_166" <?php echo $wp_wpl_properties_list->f_166->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_166">
<span<?php echo $wp_wpl_properties_list->f_166->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_166->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->ref_id->Visible) { // ref_id ?>
		<td data-name="ref_id" <?php echo $wp_wpl_properties_list->ref_id->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_ref_id">
<span<?php echo $wp_wpl_properties_list->ref_id->viewAttributes() ?>><?php echo $wp_wpl_properties_list->ref_id->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_54->Visible) { // field_54 ?>
		<td data-name="field_54" <?php echo $wp_wpl_properties_list->field_54->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_54">
<span<?php echo $wp_wpl_properties_list->field_54->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_54->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->half_bathrooms->Visible) { // half_bathrooms ?>
		<td data-name="half_bathrooms" <?php echo $wp_wpl_properties_list->half_bathrooms->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_half_bathrooms">
<span<?php echo $wp_wpl_properties_list->half_bathrooms->viewAttributes() ?>><?php echo $wp_wpl_properties_list->half_bathrooms->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_55->Visible) { // field_55 ?>
		<td data-name="field_55" <?php echo $wp_wpl_properties_list->field_55->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_55">
<span<?php echo $wp_wpl_properties_list->field_55->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_55->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->source->Visible) { // source ?>
		<td data-name="source" <?php echo $wp_wpl_properties_list->source->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_source">
<span<?php echo $wp_wpl_properties_list->source->viewAttributes() ?>><?php echo $wp_wpl_properties_list->source->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->last_sync_date->Visible) { // last_sync_date ?>
		<td data-name="last_sync_date" <?php echo $wp_wpl_properties_list->last_sync_date->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_last_sync_date">
<span<?php echo $wp_wpl_properties_list->last_sync_date->viewAttributes() ?>><?php echo $wp_wpl_properties_list->last_sync_date->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->street_suffix->Visible) { // street_suffix ?>
		<td data-name="street_suffix" <?php echo $wp_wpl_properties_list->street_suffix->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_street_suffix">
<span<?php echo $wp_wpl_properties_list->street_suffix->viewAttributes() ?>><?php echo $wp_wpl_properties_list->street_suffix->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->energy_tag->Visible) { // energy_tag ?>
		<td data-name="energy_tag" <?php echo $wp_wpl_properties_list->energy_tag->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_energy_tag">
<span<?php echo $wp_wpl_properties_list->energy_tag->viewAttributes() ?>><?php echo $wp_wpl_properties_list->energy_tag->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3006->Visible) { // field_3006 ?>
		<td data-name="field_3006" <?php echo $wp_wpl_properties_list->field_3006->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3006">
<span<?php echo $wp_wpl_properties_list->field_3006->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3006->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3007->Visible) { // field_3007 ?>
		<td data-name="field_3007" <?php echo $wp_wpl_properties_list->field_3007->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3007">
<span<?php echo $wp_wpl_properties_list->field_3007->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3007->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3008->Visible) { // field_3008 ?>
		<td data-name="field_3008" <?php echo $wp_wpl_properties_list->field_3008->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3008">
<span<?php echo $wp_wpl_properties_list->field_3008->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3008->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->importer_structure_id->Visible) { // importer_structure_id ?>
		<td data-name="importer_structure_id" <?php echo $wp_wpl_properties_list->importer_structure_id->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_importer_structure_id">
<span<?php echo $wp_wpl_properties_list->importer_structure_id->viewAttributes() ?>><?php echo $wp_wpl_properties_list->importer_structure_id->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3009->Visible) { // field_3009 ?>
		<td data-name="field_3009" <?php echo $wp_wpl_properties_list->field_3009->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3009">
<span<?php echo $wp_wpl_properties_list->field_3009->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3009->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3010->Visible) { // field_3010 ?>
		<td data-name="field_3010" <?php echo $wp_wpl_properties_list->field_3010->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3010">
<span<?php echo $wp_wpl_properties_list->field_3010->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3010->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3012->Visible) { // field_3012 ?>
		<td data-name="field_3012" <?php echo $wp_wpl_properties_list->field_3012->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3012">
<span<?php echo $wp_wpl_properties_list->field_3012->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3012->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3013->Visible) { // field_3013 ?>
		<td data-name="field_3013" <?php echo $wp_wpl_properties_list->field_3013->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3013">
<span<?php echo $wp_wpl_properties_list->field_3013->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3013->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3014->Visible) { // field_3014 ?>
		<td data-name="field_3014" <?php echo $wp_wpl_properties_list->field_3014->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3014">
<span<?php echo $wp_wpl_properties_list->field_3014->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3014->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3014->Visible) { // f_3014 ?>
		<td data-name="f_3014" <?php echo $wp_wpl_properties_list->f_3014->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3014">
<span<?php echo $wp_wpl_properties_list->f_3014->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3014->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3015->Visible) { // field_3015 ?>
		<td data-name="field_3015" <?php echo $wp_wpl_properties_list->field_3015->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3015">
<span<?php echo $wp_wpl_properties_list->field_3015->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3015->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3016->Visible) { // field_3016 ?>
		<td data-name="field_3016" <?php echo $wp_wpl_properties_list->field_3016->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3016">
<span<?php echo $wp_wpl_properties_list->field_3016->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3016->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3018->Visible) { // f_3018 ?>
		<td data-name="f_3018" <?php echo $wp_wpl_properties_list->f_3018->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3018">
<span<?php echo $wp_wpl_properties_list->f_3018->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3018->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3019->Visible) { // f_3019 ?>
		<td data-name="f_3019" <?php echo $wp_wpl_properties_list->f_3019->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3019">
<span<?php echo $wp_wpl_properties_list->f_3019->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3019->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3020->Visible) { // f_3020 ?>
		<td data-name="f_3020" <?php echo $wp_wpl_properties_list->f_3020->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3020">
<span<?php echo $wp_wpl_properties_list->f_3020->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3020->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3021->Visible) { // f_3021 ?>
		<td data-name="f_3021" <?php echo $wp_wpl_properties_list->f_3021->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3021">
<span<?php echo $wp_wpl_properties_list->f_3021->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3021->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3022->Visible) { // f_3022 ?>
		<td data-name="f_3022" <?php echo $wp_wpl_properties_list->f_3022->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3022">
<span<?php echo $wp_wpl_properties_list->f_3022->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3022->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3023->Visible) { // f_3023 ?>
		<td data-name="f_3023" <?php echo $wp_wpl_properties_list->f_3023->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3023">
<span<?php echo $wp_wpl_properties_list->f_3023->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3023->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3024->Visible) { // f_3024 ?>
		<td data-name="f_3024" <?php echo $wp_wpl_properties_list->f_3024->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3024">
<span<?php echo $wp_wpl_properties_list->f_3024->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3024->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3025->Visible) { // f_3025 ?>
		<td data-name="f_3025" <?php echo $wp_wpl_properties_list->f_3025->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3025">
<span<?php echo $wp_wpl_properties_list->f_3025->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3025->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3026->Visible) { // f_3026 ?>
		<td data-name="f_3026" <?php echo $wp_wpl_properties_list->f_3026->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3026">
<span<?php echo $wp_wpl_properties_list->f_3026->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3026->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3027->Visible) { // f_3027 ?>
		<td data-name="f_3027" <?php echo $wp_wpl_properties_list->f_3027->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3027">
<span<?php echo $wp_wpl_properties_list->f_3027->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3027->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3028->Visible) { // f_3028 ?>
		<td data-name="f_3028" <?php echo $wp_wpl_properties_list->f_3028->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3028">
<span<?php echo $wp_wpl_properties_list->f_3028->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3028->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3029->Visible) { // f_3029 ?>
		<td data-name="f_3029" <?php echo $wp_wpl_properties_list->f_3029->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3029">
<span<?php echo $wp_wpl_properties_list->f_3029->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3029->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3031->Visible) { // f_3031 ?>
		<td data-name="f_3031" <?php echo $wp_wpl_properties_list->f_3031->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3031">
<span<?php echo $wp_wpl_properties_list->f_3031->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3031->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3032->Visible) { // f_3032 ?>
		<td data-name="f_3032" <?php echo $wp_wpl_properties_list->f_3032->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3032">
<span<?php echo $wp_wpl_properties_list->f_3032->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3032->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3033->Visible) { // f_3033 ?>
		<td data-name="f_3033" <?php echo $wp_wpl_properties_list->f_3033->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3033">
<span<?php echo $wp_wpl_properties_list->f_3033->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3033->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3034->Visible) { // f_3034 ?>
		<td data-name="f_3034" <?php echo $wp_wpl_properties_list->f_3034->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3034">
<span<?php echo $wp_wpl_properties_list->f_3034->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3034->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3035->Visible) { // f_3035 ?>
		<td data-name="f_3035" <?php echo $wp_wpl_properties_list->f_3035->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3035">
<span<?php echo $wp_wpl_properties_list->f_3035->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3035->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3036->Visible) { // f_3036 ?>
		<td data-name="f_3036" <?php echo $wp_wpl_properties_list->f_3036->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3036">
<span<?php echo $wp_wpl_properties_list->f_3036->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3036->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3037->Visible) { // f_3037 ?>
		<td data-name="f_3037" <?php echo $wp_wpl_properties_list->f_3037->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3037">
<span<?php echo $wp_wpl_properties_list->f_3037->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3037->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3038->Visible) { // f_3038 ?>
		<td data-name="f_3038" <?php echo $wp_wpl_properties_list->f_3038->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3038">
<span<?php echo $wp_wpl_properties_list->f_3038->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3038->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3039->Visible) { // f_3039 ?>
		<td data-name="f_3039" <?php echo $wp_wpl_properties_list->f_3039->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3039">
<span<?php echo $wp_wpl_properties_list->f_3039->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3039->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3040->Visible) { // f_3040 ?>
		<td data-name="f_3040" <?php echo $wp_wpl_properties_list->f_3040->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3040">
<span<?php echo $wp_wpl_properties_list->f_3040->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3040->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3041->Visible) { // f_3041 ?>
		<td data-name="f_3041" <?php echo $wp_wpl_properties_list->f_3041->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3041">
<span<?php echo $wp_wpl_properties_list->f_3041->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3041->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3042->Visible) { // f_3042 ?>
		<td data-name="f_3042" <?php echo $wp_wpl_properties_list->f_3042->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3042">
<span<?php echo $wp_wpl_properties_list->f_3042->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3042->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3043->Visible) { // f_3043 ?>
		<td data-name="f_3043" <?php echo $wp_wpl_properties_list->f_3043->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3043">
<span<?php echo $wp_wpl_properties_list->f_3043->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3043->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3044->Visible) { // f_3044 ?>
		<td data-name="f_3044" <?php echo $wp_wpl_properties_list->f_3044->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3044">
<span<?php echo $wp_wpl_properties_list->f_3044->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3044->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3045->Visible) { // n_3045 ?>
		<td data-name="n_3045" <?php echo $wp_wpl_properties_list->n_3045->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3045">
<span<?php echo $wp_wpl_properties_list->n_3045->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3045->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3045_distance->Visible) { // n_3045_distance ?>
		<td data-name="n_3045_distance" <?php echo $wp_wpl_properties_list->n_3045_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3045_distance">
<span<?php echo $wp_wpl_properties_list->n_3045_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3045_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3045_distance_by->Visible) { // n_3045_distance_by ?>
		<td data-name="n_3045_distance_by" <?php echo $wp_wpl_properties_list->n_3045_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3045_distance_by">
<span<?php echo $wp_wpl_properties_list->n_3045_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3045_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3046->Visible) { // n_3046 ?>
		<td data-name="n_3046" <?php echo $wp_wpl_properties_list->n_3046->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3046">
<span<?php echo $wp_wpl_properties_list->n_3046->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3046->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3046_distance->Visible) { // n_3046_distance ?>
		<td data-name="n_3046_distance" <?php echo $wp_wpl_properties_list->n_3046_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3046_distance">
<span<?php echo $wp_wpl_properties_list->n_3046_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3046_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3046_distance_by->Visible) { // n_3046_distance_by ?>
		<td data-name="n_3046_distance_by" <?php echo $wp_wpl_properties_list->n_3046_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3046_distance_by">
<span<?php echo $wp_wpl_properties_list->n_3046_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3046_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3047->Visible) { // n_3047 ?>
		<td data-name="n_3047" <?php echo $wp_wpl_properties_list->n_3047->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3047">
<span<?php echo $wp_wpl_properties_list->n_3047->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3047->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3047_distance->Visible) { // n_3047_distance ?>
		<td data-name="n_3047_distance" <?php echo $wp_wpl_properties_list->n_3047_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3047_distance">
<span<?php echo $wp_wpl_properties_list->n_3047_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3047_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3047_distance_by->Visible) { // n_3047_distance_by ?>
		<td data-name="n_3047_distance_by" <?php echo $wp_wpl_properties_list->n_3047_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3047_distance_by">
<span<?php echo $wp_wpl_properties_list->n_3047_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3047_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3048->Visible) { // n_3048 ?>
		<td data-name="n_3048" <?php echo $wp_wpl_properties_list->n_3048->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3048">
<span<?php echo $wp_wpl_properties_list->n_3048->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3048->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3048_distance->Visible) { // n_3048_distance ?>
		<td data-name="n_3048_distance" <?php echo $wp_wpl_properties_list->n_3048_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3048_distance">
<span<?php echo $wp_wpl_properties_list->n_3048_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3048_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3048_distance_by->Visible) { // n_3048_distance_by ?>
		<td data-name="n_3048_distance_by" <?php echo $wp_wpl_properties_list->n_3048_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3048_distance_by">
<span<?php echo $wp_wpl_properties_list->n_3048_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3048_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3049->Visible) { // n_3049 ?>
		<td data-name="n_3049" <?php echo $wp_wpl_properties_list->n_3049->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3049">
<span<?php echo $wp_wpl_properties_list->n_3049->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3049->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3049_distance->Visible) { // n_3049_distance ?>
		<td data-name="n_3049_distance" <?php echo $wp_wpl_properties_list->n_3049_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3049_distance">
<span<?php echo $wp_wpl_properties_list->n_3049_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3049_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3049_distance_by->Visible) { // n_3049_distance_by ?>
		<td data-name="n_3049_distance_by" <?php echo $wp_wpl_properties_list->n_3049_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3049_distance_by">
<span<?php echo $wp_wpl_properties_list->n_3049_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3049_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3050->Visible) { // n_3050 ?>
		<td data-name="n_3050" <?php echo $wp_wpl_properties_list->n_3050->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3050">
<span<?php echo $wp_wpl_properties_list->n_3050->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3050->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3050_distance->Visible) { // n_3050_distance ?>
		<td data-name="n_3050_distance" <?php echo $wp_wpl_properties_list->n_3050_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3050_distance">
<span<?php echo $wp_wpl_properties_list->n_3050_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3050_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3050_distance_by->Visible) { // n_3050_distance_by ?>
		<td data-name="n_3050_distance_by" <?php echo $wp_wpl_properties_list->n_3050_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3050_distance_by">
<span<?php echo $wp_wpl_properties_list->n_3050_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3050_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3051->Visible) { // n_3051 ?>
		<td data-name="n_3051" <?php echo $wp_wpl_properties_list->n_3051->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3051">
<span<?php echo $wp_wpl_properties_list->n_3051->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3051->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3051_distance->Visible) { // n_3051_distance ?>
		<td data-name="n_3051_distance" <?php echo $wp_wpl_properties_list->n_3051_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3051_distance">
<span<?php echo $wp_wpl_properties_list->n_3051_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3051_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3051_distance_by->Visible) { // n_3051_distance_by ?>
		<td data-name="n_3051_distance_by" <?php echo $wp_wpl_properties_list->n_3051_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3051_distance_by">
<span<?php echo $wp_wpl_properties_list->n_3051_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3051_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3052->Visible) { // n_3052 ?>
		<td data-name="n_3052" <?php echo $wp_wpl_properties_list->n_3052->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3052">
<span<?php echo $wp_wpl_properties_list->n_3052->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3052->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3052_distance->Visible) { // n_3052_distance ?>
		<td data-name="n_3052_distance" <?php echo $wp_wpl_properties_list->n_3052_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3052_distance">
<span<?php echo $wp_wpl_properties_list->n_3052_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3052_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3052_distance_by->Visible) { // n_3052_distance_by ?>
		<td data-name="n_3052_distance_by" <?php echo $wp_wpl_properties_list->n_3052_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3052_distance_by">
<span<?php echo $wp_wpl_properties_list->n_3052_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3052_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3053->Visible) { // n_3053 ?>
		<td data-name="n_3053" <?php echo $wp_wpl_properties_list->n_3053->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3053">
<span<?php echo $wp_wpl_properties_list->n_3053->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3053->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3053_distance->Visible) { // n_3053_distance ?>
		<td data-name="n_3053_distance" <?php echo $wp_wpl_properties_list->n_3053_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3053_distance">
<span<?php echo $wp_wpl_properties_list->n_3053_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3053_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3053_distance_by->Visible) { // n_3053_distance_by ?>
		<td data-name="n_3053_distance_by" <?php echo $wp_wpl_properties_list->n_3053_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3053_distance_by">
<span<?php echo $wp_wpl_properties_list->n_3053_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3053_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3054->Visible) { // n_3054 ?>
		<td data-name="n_3054" <?php echo $wp_wpl_properties_list->n_3054->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3054">
<span<?php echo $wp_wpl_properties_list->n_3054->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3054->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3054_distance->Visible) { // n_3054_distance ?>
		<td data-name="n_3054_distance" <?php echo $wp_wpl_properties_list->n_3054_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3054_distance">
<span<?php echo $wp_wpl_properties_list->n_3054_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3054_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3054_distance_by->Visible) { // n_3054_distance_by ?>
		<td data-name="n_3054_distance_by" <?php echo $wp_wpl_properties_list->n_3054_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3054_distance_by">
<span<?php echo $wp_wpl_properties_list->n_3054_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3054_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3055->Visible) { // n_3055 ?>
		<td data-name="n_3055" <?php echo $wp_wpl_properties_list->n_3055->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3055">
<span<?php echo $wp_wpl_properties_list->n_3055->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3055->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3055_distance->Visible) { // n_3055_distance ?>
		<td data-name="n_3055_distance" <?php echo $wp_wpl_properties_list->n_3055_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3055_distance">
<span<?php echo $wp_wpl_properties_list->n_3055_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3055_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3055_distance_by->Visible) { // n_3055_distance_by ?>
		<td data-name="n_3055_distance_by" <?php echo $wp_wpl_properties_list->n_3055_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3055_distance_by">
<span<?php echo $wp_wpl_properties_list->n_3055_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3055_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3056->Visible) { // n_3056 ?>
		<td data-name="n_3056" <?php echo $wp_wpl_properties_list->n_3056->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3056">
<span<?php echo $wp_wpl_properties_list->n_3056->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3056->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3056_distance->Visible) { // n_3056_distance ?>
		<td data-name="n_3056_distance" <?php echo $wp_wpl_properties_list->n_3056_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3056_distance">
<span<?php echo $wp_wpl_properties_list->n_3056_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3056_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3056_distance_by->Visible) { // n_3056_distance_by ?>
		<td data-name="n_3056_distance_by" <?php echo $wp_wpl_properties_list->n_3056_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3056_distance_by">
<span<?php echo $wp_wpl_properties_list->n_3056_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3056_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3057->Visible) { // n_3057 ?>
		<td data-name="n_3057" <?php echo $wp_wpl_properties_list->n_3057->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3057">
<span<?php echo $wp_wpl_properties_list->n_3057->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3057->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3057_distance->Visible) { // n_3057_distance ?>
		<td data-name="n_3057_distance" <?php echo $wp_wpl_properties_list->n_3057_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3057_distance">
<span<?php echo $wp_wpl_properties_list->n_3057_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3057_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3057_distance_by->Visible) { // n_3057_distance_by ?>
		<td data-name="n_3057_distance_by" <?php echo $wp_wpl_properties_list->n_3057_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3057_distance_by">
<span<?php echo $wp_wpl_properties_list->n_3057_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3057_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3058->Visible) { // n_3058 ?>
		<td data-name="n_3058" <?php echo $wp_wpl_properties_list->n_3058->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3058">
<span<?php echo $wp_wpl_properties_list->n_3058->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3058->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3058_distance->Visible) { // n_3058_distance ?>
		<td data-name="n_3058_distance" <?php echo $wp_wpl_properties_list->n_3058_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3058_distance">
<span<?php echo $wp_wpl_properties_list->n_3058_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3058_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3058_distance_by->Visible) { // n_3058_distance_by ?>
		<td data-name="n_3058_distance_by" <?php echo $wp_wpl_properties_list->n_3058_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3058_distance_by">
<span<?php echo $wp_wpl_properties_list->n_3058_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3058_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3059->Visible) { // n_3059 ?>
		<td data-name="n_3059" <?php echo $wp_wpl_properties_list->n_3059->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3059">
<span<?php echo $wp_wpl_properties_list->n_3059->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3059->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3059_distance->Visible) { // n_3059_distance ?>
		<td data-name="n_3059_distance" <?php echo $wp_wpl_properties_list->n_3059_distance->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3059_distance">
<span<?php echo $wp_wpl_properties_list->n_3059_distance->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3059_distance->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->n_3059_distance_by->Visible) { // n_3059_distance_by ?>
		<td data-name="n_3059_distance_by" <?php echo $wp_wpl_properties_list->n_3059_distance_by->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_n_3059_distance_by">
<span<?php echo $wp_wpl_properties_list->n_3059_distance_by->viewAttributes() ?>><?php echo $wp_wpl_properties_list->n_3059_distance_by->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3060->Visible) { // f_3060 ?>
		<td data-name="f_3060" <?php echo $wp_wpl_properties_list->f_3060->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3060">
<span<?php echo $wp_wpl_properties_list->f_3060->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3060->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3061->Visible) { // f_3061 ?>
		<td data-name="f_3061" <?php echo $wp_wpl_properties_list->f_3061->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3061">
<span<?php echo $wp_wpl_properties_list->f_3061->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3061->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3062->Visible) { // f_3062 ?>
		<td data-name="f_3062" <?php echo $wp_wpl_properties_list->f_3062->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3062">
<span<?php echo $wp_wpl_properties_list->f_3062->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3062->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3063->Visible) { // field_3063 ?>
		<td data-name="field_3063" <?php echo $wp_wpl_properties_list->field_3063->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3063">
<span<?php echo $wp_wpl_properties_list->field_3063->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3063->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3064->Visible) { // field_3064 ?>
		<td data-name="field_3064" <?php echo $wp_wpl_properties_list->field_3064->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3064">
<span<?php echo $wp_wpl_properties_list->field_3064->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3064->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3065->Visible) { // field_3065 ?>
		<td data-name="field_3065" <?php echo $wp_wpl_properties_list->field_3065->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3065">
<span<?php echo $wp_wpl_properties_list->field_3065->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3065->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_313_en_us->Visible) { // field_313_en_us ?>
		<td data-name="field_313_en_us" <?php echo $wp_wpl_properties_list->field_313_en_us->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_313_en_us">
<span<?php echo $wp_wpl_properties_list->field_313_en_us->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_313_en_us->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_313_fr_fr->Visible) { // field_313_fr_fr ?>
		<td data-name="field_313_fr_fr" <?php echo $wp_wpl_properties_list->field_313_fr_fr->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_313_fr_fr">
<span<?php echo $wp_wpl_properties_list->field_313_fr_fr->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_313_fr_fr->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_312_en_us->Visible) { // field_312_en_us ?>
		<td data-name="field_312_en_us" <?php echo $wp_wpl_properties_list->field_312_en_us->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_312_en_us">
<span<?php echo $wp_wpl_properties_list->field_312_en_us->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_312_en_us->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_312_fr_fr->Visible) { // field_312_fr_fr ?>
		<td data-name="field_312_fr_fr" <?php echo $wp_wpl_properties_list->field_312_fr_fr->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_312_fr_fr">
<span<?php echo $wp_wpl_properties_list->field_312_fr_fr->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_312_fr_fr->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_42_en_us->Visible) { // field_42_en_us ?>
		<td data-name="field_42_en_us" <?php echo $wp_wpl_properties_list->field_42_en_us->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_42_en_us">
<span<?php echo $wp_wpl_properties_list->field_42_en_us->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_42_en_us->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_42_fr_fr->Visible) { // field_42_fr_fr ?>
		<td data-name="field_42_fr_fr" <?php echo $wp_wpl_properties_list->field_42_fr_fr->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_42_fr_fr">
<span<?php echo $wp_wpl_properties_list->field_42_fr_fr->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_42_fr_fr->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3067->Visible) { // field_3067 ?>
		<td data-name="field_3067" <?php echo $wp_wpl_properties_list->field_3067->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3067">
<span<?php echo $wp_wpl_properties_list->field_3067->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3067->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3068->Visible) { // field_3068 ?>
		<td data-name="field_3068" <?php echo $wp_wpl_properties_list->field_3068->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3068">
<span<?php echo $wp_wpl_properties_list->field_3068->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3068->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3069->Visible) { // field_3069 ?>
		<td data-name="field_3069" <?php echo $wp_wpl_properties_list->field_3069->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3069">
<span<?php echo $wp_wpl_properties_list->field_3069->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3069->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3070->Visible) { // field_3070 ?>
		<td data-name="field_3070" <?php echo $wp_wpl_properties_list->field_3070->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3070">
<span<?php echo $wp_wpl_properties_list->field_3070->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3070->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3071->Visible) { // field_3071 ?>
		<td data-name="field_3071" <?php echo $wp_wpl_properties_list->field_3071->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3071">
<span<?php echo $wp_wpl_properties_list->field_3071->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3071->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3071_en_us->Visible) { // field_3071_en_us ?>
		<td data-name="field_3071_en_us" <?php echo $wp_wpl_properties_list->field_3071_en_us->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3071_en_us">
<span<?php echo $wp_wpl_properties_list->field_3071_en_us->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3071_en_us->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3071_fr_fr->Visible) { // field_3071_fr_fr ?>
		<td data-name="field_3071_fr_fr" <?php echo $wp_wpl_properties_list->field_3071_fr_fr->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3071_fr_fr">
<span<?php echo $wp_wpl_properties_list->field_3071_fr_fr->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3071_fr_fr->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3072->Visible) { // field_3072 ?>
		<td data-name="field_3072" <?php echo $wp_wpl_properties_list->field_3072->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3072">
<span<?php echo $wp_wpl_properties_list->field_3072->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3072->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3073->Visible) { // field_3073 ?>
		<td data-name="field_3073" <?php echo $wp_wpl_properties_list->field_3073->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3073">
<span<?php echo $wp_wpl_properties_list->field_3073->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3073->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3074->Visible) { // field_3074 ?>
		<td data-name="field_3074" <?php echo $wp_wpl_properties_list->field_3074->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3074">
<span<?php echo $wp_wpl_properties_list->field_3074->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3074->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3074_en_us->Visible) { // field_3074_en_us ?>
		<td data-name="field_3074_en_us" <?php echo $wp_wpl_properties_list->field_3074_en_us->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3074_en_us">
<span<?php echo $wp_wpl_properties_list->field_3074_en_us->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3074_en_us->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3074_fr_fr->Visible) { // field_3074_fr_fr ?>
		<td data-name="field_3074_fr_fr" <?php echo $wp_wpl_properties_list->field_3074_fr_fr->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3074_fr_fr">
<span<?php echo $wp_wpl_properties_list->field_3074_fr_fr->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3074_fr_fr->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3075->Visible) { // field_3075 ?>
		<td data-name="field_3075" <?php echo $wp_wpl_properties_list->field_3075->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3075">
<span<?php echo $wp_wpl_properties_list->field_3075->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3075->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3076->Visible) { // field_3076 ?>
		<td data-name="field_3076" <?php echo $wp_wpl_properties_list->field_3076->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3076">
<span<?php echo $wp_wpl_properties_list->field_3076->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3076->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3077->Visible) { // field_3077 ?>
		<td data-name="field_3077" <?php echo $wp_wpl_properties_list->field_3077->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3077">
<span<?php echo $wp_wpl_properties_list->field_3077->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3077->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3078->Visible) { // field_3078 ?>
		<td data-name="field_3078" <?php echo $wp_wpl_properties_list->field_3078->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3078">
<span<?php echo $wp_wpl_properties_list->field_3078->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3078->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3079->Visible) { // field_3079 ?>
		<td data-name="field_3079" <?php echo $wp_wpl_properties_list->field_3079->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3079">
<span<?php echo $wp_wpl_properties_list->field_3079->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3079->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3080->Visible) { // field_3080 ?>
		<td data-name="field_3080" <?php echo $wp_wpl_properties_list->field_3080->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3080">
<span<?php echo $wp_wpl_properties_list->field_3080->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3080->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3076_en_us->Visible) { // field_3076_en_us ?>
		<td data-name="field_3076_en_us" <?php echo $wp_wpl_properties_list->field_3076_en_us->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3076_en_us">
<span<?php echo $wp_wpl_properties_list->field_3076_en_us->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3076_en_us->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3076_fr_fr->Visible) { // field_3076_fr_fr ?>
		<td data-name="field_3076_fr_fr" <?php echo $wp_wpl_properties_list->field_3076_fr_fr->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3076_fr_fr">
<span<?php echo $wp_wpl_properties_list->field_3076_fr_fr->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3076_fr_fr->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3080_en_us->Visible) { // field_3080_en_us ?>
		<td data-name="field_3080_en_us" <?php echo $wp_wpl_properties_list->field_3080_en_us->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3080_en_us">
<span<?php echo $wp_wpl_properties_list->field_3080_en_us->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3080_en_us->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3080_fr_fr->Visible) { // field_3080_fr_fr ?>
		<td data-name="field_3080_fr_fr" <?php echo $wp_wpl_properties_list->field_3080_fr_fr->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3080_fr_fr">
<span<?php echo $wp_wpl_properties_list->field_3080_fr_fr->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3080_fr_fr->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3081->Visible) { // field_3081 ?>
		<td data-name="field_3081" <?php echo $wp_wpl_properties_list->field_3081->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3081">
<span<?php echo $wp_wpl_properties_list->field_3081->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3081->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3081_en_us->Visible) { // field_3081_en_us ?>
		<td data-name="field_3081_en_us" <?php echo $wp_wpl_properties_list->field_3081_en_us->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3081_en_us">
<span<?php echo $wp_wpl_properties_list->field_3081_en_us->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3081_en_us->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3081_fr_fr->Visible) { // field_3081_fr_fr ?>
		<td data-name="field_3081_fr_fr" <?php echo $wp_wpl_properties_list->field_3081_fr_fr->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3081_fr_fr">
<span<?php echo $wp_wpl_properties_list->field_3081_fr_fr->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3081_fr_fr->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3082->Visible) { // field_3082 ?>
		<td data-name="field_3082" <?php echo $wp_wpl_properties_list->field_3082->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3082">
<span<?php echo $wp_wpl_properties_list->field_3082->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3082->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3082_en_us->Visible) { // field_3082_en_us ?>
		<td data-name="field_3082_en_us" <?php echo $wp_wpl_properties_list->field_3082_en_us->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3082_en_us">
<span<?php echo $wp_wpl_properties_list->field_3082_en_us->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3082_en_us->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3082_fr_fr->Visible) { // field_3082_fr_fr ?>
		<td data-name="field_3082_fr_fr" <?php echo $wp_wpl_properties_list->field_3082_fr_fr->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3082_fr_fr">
<span<?php echo $wp_wpl_properties_list->field_3082_fr_fr->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3082_fr_fr->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3084->Visible) { // field_3084 ?>
		<td data-name="field_3084" <?php echo $wp_wpl_properties_list->field_3084->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3084">
<span<?php echo $wp_wpl_properties_list->field_3084->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3084->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3085->Visible) { // field_3085 ?>
		<td data-name="field_3085" <?php echo $wp_wpl_properties_list->field_3085->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3085">
<span<?php echo $wp_wpl_properties_list->field_3085->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3085->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3086->Visible) { // field_3086 ?>
		<td data-name="field_3086" <?php echo $wp_wpl_properties_list->field_3086->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3086">
<span<?php echo $wp_wpl_properties_list->field_3086->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3086->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3096->Visible) { // field_3096 ?>
		<td data-name="field_3096" <?php echo $wp_wpl_properties_list->field_3096->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3096">
<span<?php echo $wp_wpl_properties_list->field_3096->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3096->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3097->Visible) { // field_3097 ?>
		<td data-name="field_3097" <?php echo $wp_wpl_properties_list->field_3097->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3097">
<span<?php echo $wp_wpl_properties_list->field_3097->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3097->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3098->Visible) { // field_3098 ?>
		<td data-name="field_3098" <?php echo $wp_wpl_properties_list->field_3098->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3098">
<span<?php echo $wp_wpl_properties_list->field_3098->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3098->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3099->Visible) { // field_3099 ?>
		<td data-name="field_3099" <?php echo $wp_wpl_properties_list->field_3099->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3099">
<span<?php echo $wp_wpl_properties_list->field_3099->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3099->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3100->Visible) { // field_3100 ?>
		<td data-name="field_3100" <?php echo $wp_wpl_properties_list->field_3100->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3100">
<span<?php echo $wp_wpl_properties_list->field_3100->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3100->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3101->Visible) { // field_3101 ?>
		<td data-name="field_3101" <?php echo $wp_wpl_properties_list->field_3101->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3101">
<span<?php echo $wp_wpl_properties_list->field_3101->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3101->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3102->Visible) { // field_3102 ?>
		<td data-name="field_3102" <?php echo $wp_wpl_properties_list->field_3102->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3102">
<span<?php echo $wp_wpl_properties_list->field_3102->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3102->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3103->Visible) { // field_3103 ?>
		<td data-name="field_3103" <?php echo $wp_wpl_properties_list->field_3103->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3103">
<span<?php echo $wp_wpl_properties_list->field_3103->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3103->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3104->Visible) { // field_3104 ?>
		<td data-name="field_3104" <?php echo $wp_wpl_properties_list->field_3104->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3104">
<span<?php echo $wp_wpl_properties_list->field_3104->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3104->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3105->Visible) { // field_3105 ?>
		<td data-name="field_3105" <?php echo $wp_wpl_properties_list->field_3105->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3105">
<span<?php echo $wp_wpl_properties_list->field_3105->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3105->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3106->Visible) { // field_3106 ?>
		<td data-name="field_3106" <?php echo $wp_wpl_properties_list->field_3106->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3106">
<span<?php echo $wp_wpl_properties_list->field_3106->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3106->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3107->Visible) { // field_3107 ?>
		<td data-name="field_3107" <?php echo $wp_wpl_properties_list->field_3107->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3107">
<span<?php echo $wp_wpl_properties_list->field_3107->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3107->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3108->Visible) { // field_3108 ?>
		<td data-name="field_3108" <?php echo $wp_wpl_properties_list->field_3108->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3108">
<span<?php echo $wp_wpl_properties_list->field_3108->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3108->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3109->Visible) { // field_3109 ?>
		<td data-name="field_3109" <?php echo $wp_wpl_properties_list->field_3109->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3109">
<span<?php echo $wp_wpl_properties_list->field_3109->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3109->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3110->Visible) { // field_3110 ?>
		<td data-name="field_3110" <?php echo $wp_wpl_properties_list->field_3110->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3110">
<span<?php echo $wp_wpl_properties_list->field_3110->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3110->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3111->Visible) { // field_3111 ?>
		<td data-name="field_3111" <?php echo $wp_wpl_properties_list->field_3111->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3111">
<span<?php echo $wp_wpl_properties_list->field_3111->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3111->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3112->Visible) { // field_3112 ?>
		<td data-name="field_3112" <?php echo $wp_wpl_properties_list->field_3112->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3112">
<span<?php echo $wp_wpl_properties_list->field_3112->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3112->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3113->Visible) { // field_3113 ?>
		<td data-name="field_3113" <?php echo $wp_wpl_properties_list->field_3113->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3113">
<span<?php echo $wp_wpl_properties_list->field_3113->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3113->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3113_en_us->Visible) { // field_3113_en_us ?>
		<td data-name="field_3113_en_us" <?php echo $wp_wpl_properties_list->field_3113_en_us->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3113_en_us">
<span<?php echo $wp_wpl_properties_list->field_3113_en_us->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3113_en_us->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3113_fr_fr->Visible) { // field_3113_fr_fr ?>
		<td data-name="field_3113_fr_fr" <?php echo $wp_wpl_properties_list->field_3113_fr_fr->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3113_fr_fr">
<span<?php echo $wp_wpl_properties_list->field_3113_fr_fr->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3113_fr_fr->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3114->Visible) { // field_3114 ?>
		<td data-name="field_3114" <?php echo $wp_wpl_properties_list->field_3114->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3114">
<span<?php echo $wp_wpl_properties_list->field_3114->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3114->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3114_en_us->Visible) { // field_3114_en_us ?>
		<td data-name="field_3114_en_us" <?php echo $wp_wpl_properties_list->field_3114_en_us->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3114_en_us">
<span<?php echo $wp_wpl_properties_list->field_3114_en_us->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3114_en_us->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3114_fr_fr->Visible) { // field_3114_fr_fr ?>
		<td data-name="field_3114_fr_fr" <?php echo $wp_wpl_properties_list->field_3114_fr_fr->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3114_fr_fr">
<span<?php echo $wp_wpl_properties_list->field_3114_fr_fr->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3114_fr_fr->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3115->Visible) { // field_3115 ?>
		<td data-name="field_3115" <?php echo $wp_wpl_properties_list->field_3115->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3115">
<span<?php echo $wp_wpl_properties_list->field_3115->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3115->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3115_si->Visible) { // field_3115_si ?>
		<td data-name="field_3115_si" <?php echo $wp_wpl_properties_list->field_3115_si->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3115_si">
<span<?php echo $wp_wpl_properties_list->field_3115_si->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3115_si->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3115_unit->Visible) { // field_3115_unit ?>
		<td data-name="field_3115_unit" <?php echo $wp_wpl_properties_list->field_3115_unit->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3115_unit">
<span<?php echo $wp_wpl_properties_list->field_3115_unit->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3115_unit->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3116->Visible) { // field_3116 ?>
		<td data-name="field_3116" <?php echo $wp_wpl_properties_list->field_3116->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3116">
<span<?php echo $wp_wpl_properties_list->field_3116->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3116->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3117->Visible) { // field_3117 ?>
		<td data-name="field_3117" <?php echo $wp_wpl_properties_list->field_3117->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3117">
<span<?php echo $wp_wpl_properties_list->field_3117->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3117->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3117_en_us->Visible) { // field_3117_en_us ?>
		<td data-name="field_3117_en_us" <?php echo $wp_wpl_properties_list->field_3117_en_us->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3117_en_us">
<span<?php echo $wp_wpl_properties_list->field_3117_en_us->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3117_en_us->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3117_fr_fr->Visible) { // field_3117_fr_fr ?>
		<td data-name="field_3117_fr_fr" <?php echo $wp_wpl_properties_list->field_3117_fr_fr->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3117_fr_fr">
<span<?php echo $wp_wpl_properties_list->field_3117_fr_fr->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3117_fr_fr->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3118->Visible) { // field_3118 ?>
		<td data-name="field_3118" <?php echo $wp_wpl_properties_list->field_3118->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3118">
<span<?php echo $wp_wpl_properties_list->field_3118->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3118->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3118_en_us->Visible) { // field_3118_en_us ?>
		<td data-name="field_3118_en_us" <?php echo $wp_wpl_properties_list->field_3118_en_us->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3118_en_us">
<span<?php echo $wp_wpl_properties_list->field_3118_en_us->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3118_en_us->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3118_fr_fr->Visible) { // field_3118_fr_fr ?>
		<td data-name="field_3118_fr_fr" <?php echo $wp_wpl_properties_list->field_3118_fr_fr->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3118_fr_fr">
<span<?php echo $wp_wpl_properties_list->field_3118_fr_fr->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3118_fr_fr->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3119->Visible) { // field_3119 ?>
		<td data-name="field_3119" <?php echo $wp_wpl_properties_list->field_3119->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3119">
<span<?php echo $wp_wpl_properties_list->field_3119->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3119->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3119_en_us->Visible) { // field_3119_en_us ?>
		<td data-name="field_3119_en_us" <?php echo $wp_wpl_properties_list->field_3119_en_us->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3119_en_us">
<span<?php echo $wp_wpl_properties_list->field_3119_en_us->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3119_en_us->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3119_fr_fr->Visible) { // field_3119_fr_fr ?>
		<td data-name="field_3119_fr_fr" <?php echo $wp_wpl_properties_list->field_3119_fr_fr->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3119_fr_fr">
<span<?php echo $wp_wpl_properties_list->field_3119_fr_fr->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3119_fr_fr->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3120->Visible) { // field_3120 ?>
		<td data-name="field_3120" <?php echo $wp_wpl_properties_list->field_3120->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3120">
<span<?php echo $wp_wpl_properties_list->field_3120->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3120->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3120_en_us->Visible) { // field_3120_en_us ?>
		<td data-name="field_3120_en_us" <?php echo $wp_wpl_properties_list->field_3120_en_us->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3120_en_us">
<span<?php echo $wp_wpl_properties_list->field_3120_en_us->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3120_en_us->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3120_fr_fr->Visible) { // field_3120_fr_fr ?>
		<td data-name="field_3120_fr_fr" <?php echo $wp_wpl_properties_list->field_3120_fr_fr->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3120_fr_fr">
<span<?php echo $wp_wpl_properties_list->field_3120_fr_fr->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3120_fr_fr->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3121->Visible) { // field_3121 ?>
		<td data-name="field_3121" <?php echo $wp_wpl_properties_list->field_3121->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3121">
<span<?php echo $wp_wpl_properties_list->field_3121->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3121->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3122->Visible) { // field_3122 ?>
		<td data-name="field_3122" <?php echo $wp_wpl_properties_list->field_3122->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3122">
<span<?php echo $wp_wpl_properties_list->field_3122->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3122->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3122_si->Visible) { // field_3122_si ?>
		<td data-name="field_3122_si" <?php echo $wp_wpl_properties_list->field_3122_si->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3122_si">
<span<?php echo $wp_wpl_properties_list->field_3122_si->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3122_si->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3122_unit->Visible) { // field_3122_unit ?>
		<td data-name="field_3122_unit" <?php echo $wp_wpl_properties_list->field_3122_unit->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3122_unit">
<span<?php echo $wp_wpl_properties_list->field_3122_unit->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3122_unit->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3123->Visible) { // field_3123 ?>
		<td data-name="field_3123" <?php echo $wp_wpl_properties_list->field_3123->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3123">
<span<?php echo $wp_wpl_properties_list->field_3123->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3123->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3124->Visible) { // field_3124 ?>
		<td data-name="field_3124" <?php echo $wp_wpl_properties_list->field_3124->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3124">
<span<?php echo $wp_wpl_properties_list->field_3124->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3124->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3125->Visible) { // field_3125 ?>
		<td data-name="field_3125" <?php echo $wp_wpl_properties_list->field_3125->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3125">
<span<?php echo $wp_wpl_properties_list->field_3125->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3125->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3126->Visible) { // field_3126 ?>
		<td data-name="field_3126" <?php echo $wp_wpl_properties_list->field_3126->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3126">
<span<?php echo $wp_wpl_properties_list->field_3126->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3126->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3127->Visible) { // field_3127 ?>
		<td data-name="field_3127" <?php echo $wp_wpl_properties_list->field_3127->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3127">
<span<?php echo $wp_wpl_properties_list->field_3127->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3127->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3128->Visible) { // field_3128 ?>
		<td data-name="field_3128" <?php echo $wp_wpl_properties_list->field_3128->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3128">
<span<?php echo $wp_wpl_properties_list->field_3128->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3128->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3129->Visible) { // field_3129 ?>
		<td data-name="field_3129" <?php echo $wp_wpl_properties_list->field_3129->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3129">
<span<?php echo $wp_wpl_properties_list->field_3129->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3129->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3130->Visible) { // field_3130 ?>
		<td data-name="field_3130" <?php echo $wp_wpl_properties_list->field_3130->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3130">
<span<?php echo $wp_wpl_properties_list->field_3130->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3130->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3131->Visible) { // field_3131 ?>
		<td data-name="field_3131" <?php echo $wp_wpl_properties_list->field_3131->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3131">
<span<?php echo $wp_wpl_properties_list->field_3131->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3131->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3132->Visible) { // field_3132 ?>
		<td data-name="field_3132" <?php echo $wp_wpl_properties_list->field_3132->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3132">
<span<?php echo $wp_wpl_properties_list->field_3132->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3132->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3133->Visible) { // field_3133 ?>
		<td data-name="field_3133" <?php echo $wp_wpl_properties_list->field_3133->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3133">
<span<?php echo $wp_wpl_properties_list->field_3133->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3133->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3134->Visible) { // field_3134 ?>
		<td data-name="field_3134" <?php echo $wp_wpl_properties_list->field_3134->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3134">
<span<?php echo $wp_wpl_properties_list->field_3134->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3134->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3135->Visible) { // field_3135 ?>
		<td data-name="field_3135" <?php echo $wp_wpl_properties_list->field_3135->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3135">
<span<?php echo $wp_wpl_properties_list->field_3135->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3135->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3136->Visible) { // field_3136 ?>
		<td data-name="field_3136" <?php echo $wp_wpl_properties_list->field_3136->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3136">
<span<?php echo $wp_wpl_properties_list->field_3136->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3136->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3137->Visible) { // field_3137 ?>
		<td data-name="field_3137" <?php echo $wp_wpl_properties_list->field_3137->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3137">
<span<?php echo $wp_wpl_properties_list->field_3137->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3137->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3138->Visible) { // field_3138 ?>
		<td data-name="field_3138" <?php echo $wp_wpl_properties_list->field_3138->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3138">
<span<?php echo $wp_wpl_properties_list->field_3138->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3138->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3139->Visible) { // field_3139 ?>
		<td data-name="field_3139" <?php echo $wp_wpl_properties_list->field_3139->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3139">
<span<?php echo $wp_wpl_properties_list->field_3139->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3139->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3140->Visible) { // field_3140 ?>
		<td data-name="field_3140" <?php echo $wp_wpl_properties_list->field_3140->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3140">
<span<?php echo $wp_wpl_properties_list->field_3140->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3140->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3141->Visible) { // field_3141 ?>
		<td data-name="field_3141" <?php echo $wp_wpl_properties_list->field_3141->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3141">
<span<?php echo $wp_wpl_properties_list->field_3141->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3141->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3142->Visible) { // field_3142 ?>
		<td data-name="field_3142" <?php echo $wp_wpl_properties_list->field_3142->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3142">
<span<?php echo $wp_wpl_properties_list->field_3142->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3142->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3143->Visible) { // field_3143 ?>
		<td data-name="field_3143" <?php echo $wp_wpl_properties_list->field_3143->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3143">
<span<?php echo $wp_wpl_properties_list->field_3143->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3143->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3144->Visible) { // field_3144 ?>
		<td data-name="field_3144" <?php echo $wp_wpl_properties_list->field_3144->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3144">
<span<?php echo $wp_wpl_properties_list->field_3144->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3144->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3145->Visible) { // field_3145 ?>
		<td data-name="field_3145" <?php echo $wp_wpl_properties_list->field_3145->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3145">
<span<?php echo $wp_wpl_properties_list->field_3145->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3145->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3146->Visible) { // field_3146 ?>
		<td data-name="field_3146" <?php echo $wp_wpl_properties_list->field_3146->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3146">
<span<?php echo $wp_wpl_properties_list->field_3146->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3146->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3147->Visible) { // field_3147 ?>
		<td data-name="field_3147" <?php echo $wp_wpl_properties_list->field_3147->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3147">
<span<?php echo $wp_wpl_properties_list->field_3147->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3147->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3148->Visible) { // field_3148 ?>
		<td data-name="field_3148" <?php echo $wp_wpl_properties_list->field_3148->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3148">
<span<?php echo $wp_wpl_properties_list->field_3148->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3148->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3149->Visible) { // field_3149 ?>
		<td data-name="field_3149" <?php echo $wp_wpl_properties_list->field_3149->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3149">
<span<?php echo $wp_wpl_properties_list->field_3149->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3149->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3150->Visible) { // field_3150 ?>
		<td data-name="field_3150" <?php echo $wp_wpl_properties_list->field_3150->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3150">
<span<?php echo $wp_wpl_properties_list->field_3150->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3150->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3151->Visible) { // field_3151 ?>
		<td data-name="field_3151" <?php echo $wp_wpl_properties_list->field_3151->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3151">
<span<?php echo $wp_wpl_properties_list->field_3151->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3151->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3152->Visible) { // field_3152 ?>
		<td data-name="field_3152" <?php echo $wp_wpl_properties_list->field_3152->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3152">
<span<?php echo $wp_wpl_properties_list->field_3152->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3152->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3153->Visible) { // field_3153 ?>
		<td data-name="field_3153" <?php echo $wp_wpl_properties_list->field_3153->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3153">
<span<?php echo $wp_wpl_properties_list->field_3153->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3153->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3154->Visible) { // field_3154 ?>
		<td data-name="field_3154" <?php echo $wp_wpl_properties_list->field_3154->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3154">
<span<?php echo $wp_wpl_properties_list->field_3154->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3154->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3155->Visible) { // field_3155 ?>
		<td data-name="field_3155" <?php echo $wp_wpl_properties_list->field_3155->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3155">
<span<?php echo $wp_wpl_properties_list->field_3155->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3155->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3156->Visible) { // field_3156 ?>
		<td data-name="field_3156" <?php echo $wp_wpl_properties_list->field_3156->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3156">
<span<?php echo $wp_wpl_properties_list->field_3156->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3156->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3157->Visible) { // field_3157 ?>
		<td data-name="field_3157" <?php echo $wp_wpl_properties_list->field_3157->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3157">
<span<?php echo $wp_wpl_properties_list->field_3157->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3157->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3158->Visible) { // field_3158 ?>
		<td data-name="field_3158" <?php echo $wp_wpl_properties_list->field_3158->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3158">
<span<?php echo $wp_wpl_properties_list->field_3158->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3158->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3159->Visible) { // field_3159 ?>
		<td data-name="field_3159" <?php echo $wp_wpl_properties_list->field_3159->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3159">
<span<?php echo $wp_wpl_properties_list->field_3159->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3159->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3160->Visible) { // field_3160 ?>
		<td data-name="field_3160" <?php echo $wp_wpl_properties_list->field_3160->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3160">
<span<?php echo $wp_wpl_properties_list->field_3160->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3160->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3161->Visible) { // field_3161 ?>
		<td data-name="field_3161" <?php echo $wp_wpl_properties_list->field_3161->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3161">
<span<?php echo $wp_wpl_properties_list->field_3161->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3161->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3162->Visible) { // field_3162 ?>
		<td data-name="field_3162" <?php echo $wp_wpl_properties_list->field_3162->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3162">
<span<?php echo $wp_wpl_properties_list->field_3162->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3162->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3163->Visible) { // field_3163 ?>
		<td data-name="field_3163" <?php echo $wp_wpl_properties_list->field_3163->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3163">
<span<?php echo $wp_wpl_properties_list->field_3163->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3163->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3164->Visible) { // field_3164 ?>
		<td data-name="field_3164" <?php echo $wp_wpl_properties_list->field_3164->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3164">
<span<?php echo $wp_wpl_properties_list->field_3164->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3164->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3165->Visible) { // field_3165 ?>
		<td data-name="field_3165" <?php echo $wp_wpl_properties_list->field_3165->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3165">
<span<?php echo $wp_wpl_properties_list->field_3165->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3165->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3166->Visible) { // field_3166 ?>
		<td data-name="field_3166" <?php echo $wp_wpl_properties_list->field_3166->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3166">
<span<?php echo $wp_wpl_properties_list->field_3166->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3166->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3167->Visible) { // field_3167 ?>
		<td data-name="field_3167" <?php echo $wp_wpl_properties_list->field_3167->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3167">
<span<?php echo $wp_wpl_properties_list->field_3167->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3167->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3168->Visible) { // field_3168 ?>
		<td data-name="field_3168" <?php echo $wp_wpl_properties_list->field_3168->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3168">
<span<?php echo $wp_wpl_properties_list->field_3168->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3168->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3169->Visible) { // field_3169 ?>
		<td data-name="field_3169" <?php echo $wp_wpl_properties_list->field_3169->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3169">
<span<?php echo $wp_wpl_properties_list->field_3169->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3169->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3170->Visible) { // field_3170 ?>
		<td data-name="field_3170" <?php echo $wp_wpl_properties_list->field_3170->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3170">
<span<?php echo $wp_wpl_properties_list->field_3170->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3170->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3171->Visible) { // field_3171 ?>
		<td data-name="field_3171" <?php echo $wp_wpl_properties_list->field_3171->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3171">
<span<?php echo $wp_wpl_properties_list->field_3171->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3171->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3172->Visible) { // field_3172 ?>
		<td data-name="field_3172" <?php echo $wp_wpl_properties_list->field_3172->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3172">
<span<?php echo $wp_wpl_properties_list->field_3172->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3172->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3173->Visible) { // field_3173 ?>
		<td data-name="field_3173" <?php echo $wp_wpl_properties_list->field_3173->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3173">
<span<?php echo $wp_wpl_properties_list->field_3173->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3173->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3173_si->Visible) { // field_3173_si ?>
		<td data-name="field_3173_si" <?php echo $wp_wpl_properties_list->field_3173_si->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3173_si">
<span<?php echo $wp_wpl_properties_list->field_3173_si->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3173_si->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->field_3173_unit->Visible) { // field_3173_unit ?>
		<td data-name="field_3173_unit" <?php echo $wp_wpl_properties_list->field_3173_unit->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_field_3173_unit">
<span<?php echo $wp_wpl_properties_list->field_3173_unit->viewAttributes() ?>><?php echo $wp_wpl_properties_list->field_3173_unit->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($wp_wpl_properties_list->f_3174->Visible) { // f_3174 ?>
		<td data-name="f_3174" <?php echo $wp_wpl_properties_list->f_3174->cellAttributes() ?>>
<span id="el<?php echo $wp_wpl_properties_list->RowCount ?>_wp_wpl_properties_f_3174">
<span<?php echo $wp_wpl_properties_list->f_3174->viewAttributes() ?>><?php echo $wp_wpl_properties_list->f_3174->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
<?php

// Render list options (body, right)
$wp_wpl_properties_list->ListOptions->render("body", "right", $wp_wpl_properties_list->RowCount);
?>
	</tr>
<?php
	}
	if (!$wp_wpl_properties_list->isGridAdd())
		$wp_wpl_properties_list->Recordset->moveNext();
}
?>
</tbody>
</table><!-- /.ew-table -->
<?php } ?>
</div><!-- /.ew-grid-middle-panel -->
<?php if (!$wp_wpl_properties->CurrentAction) { ?>
<input type="hidden" name="action" id="action" value="">
<?php } ?>
</form><!-- /.ew-list-form -->
<?php

// Close recordset
if ($wp_wpl_properties_list->Recordset)
	$wp_wpl_properties_list->Recordset->Close();
?>
<?php if (!$wp_wpl_properties_list->isExport()) { ?>
<div class="card-footer ew-grid-lower-panel">
<?php if (!$wp_wpl_properties_list->isGridAdd()) { ?>
<form name="ew-pager-form" class="form-inline ew-form ew-pager-form" action="<?php echo CurrentPageName() ?>">
<?php echo $wp_wpl_properties_list->Pager->render() ?>
</form>
<?php } ?>
<div class="ew-list-other-options">
<?php $wp_wpl_properties_list->OtherOptions->render("body", "bottom") ?>
</div>
<div class="clearfix"></div>
</div>
<?php } ?>
</div><!-- /.ew-grid -->
<?php } ?>
<?php if ($wp_wpl_properties_list->TotalRecords == 0 && !$wp_wpl_properties->CurrentAction) { // Show other options ?>
<div class="ew-list-other-options">
<?php $wp_wpl_properties_list->OtherOptions->render("body") ?>
</div>
<div class="clearfix"></div>
<?php } ?>
<?php
$wp_wpl_properties_list->showPageFooter();
if (Config("DEBUG"))
	echo GetDebugMessage();
?>
<?php if (!$wp_wpl_properties_list->isExport()) { ?>
<script>
loadjs.ready("load", function() {

	// Startup script
	// Write your table-specific startup script here
	// console.log("page loaded");

});
</script>
<?php } ?>
<?php include_once "footer.php"; ?>
<?php
$wp_wpl_properties_list->terminate();
?>

Hry