Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php echo "<\x21do\x63\x74ype\x20ht\x6dl>\n<h\x74m\x6c\x3e\n<\x68e\x61d\x3e\n<\x6deta ch\..
Decoded Output download
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Mapa Propiedades</title>
<meta name="generator" content="WYSIWYG Web Builder 15 - http://www.wysiwygwebbuilder.com">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Roboto:300" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Rubik+Mono+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Segoe+UI:300" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato:400&subset=latin-ext" rel="stylesheet">
<link href="contralor2.css" rel="stylesheet">
<link href="mapabusca.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script src="https://unpkg.com/deck.gl@^7.0.9/dist.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBpm8Fi3fk3ZNlvYBPrX8sPfKj3zVAdFsk&libraries=visualization"></script> <script src="js/linea.js"></script>
<script>
var map;
var marker;
</script>
<script>
\$(document).ready(function(){
var lookTo = new google.maps.LatLng(-33.89750333275048, -60.575367664113514);
var info = new google.maps.InfoWindow();
var panoOptions = {
position: lookTo,
panControl: false,
addressControl: false,
linksControl: false,
zoomControlOptions: false
};
var pano = new google.maps.StreetViewPanorama(document.getElementById('pano'),panoOptions);
// initialize a new streetviewService object
var service = new google.maps.StreetViewService;
// call the "getPanoramaByLocation" function of the Streetview Services to return the closest streetview position for the entered coordinates
/* service.getPanoramaByLocation(pano.getPosition(), 50, function(panoData) {
// if the function returned a result
// the GPS coordinates of the streetview camera position
var panoCenter = panoData.location.latLng;
// this is where the magic happens!
// the "computeHeading" function calculates the heading with the two GPS coordinates entered as parameters
var heading = google.maps.geometry.spherical.computeHeading(panoCenter, lookTo);
// now we know the heading (camera direction, elevation, zoom, etc) set this as parameters to the panorama object
var pov = pano.getPov();
pov.heading = heading;
pano.setPov(pov);
// set a marker on the location we are looking at, to verify the calculations were correct
var marker = new google.maps.Marker({
map: pano,
position: lookTo
});
});*/
//******************************************
const parcelas = 'parcechica.json';
function setTooltip({object}) {
if(object){
var html = "<b>Partida: "+object.properties.partida+"</b><br>";
var lat = object.properties.lat;
var lon = object.properties.lon
var myResult = new google.maps.LatLng(lat,lon);
info.setContent(html);
info.setPosition(myResult);
info.setOptions({pixelOffset: new google.maps.Size(0,60)});
info.open(map);
createMarker(myResult);
}else{
}
}
//************************************************
map = new google.maps.Map(document.getElementById('map_canvas'), {
center: new google.maps.LatLng(-33.893093, -60.57245),
zoom:18,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
//****************************************************
const deckoverlay = new deck.GoogleMapsOverlay({
layers: [
new deck.GeoJsonLayer({
id: 'geo',
data: parcelas ,
opacity: 0.2,
stroked: true,
filled: true,
extruded: false,
wireframe: true,
visible:true,
getFillColor: [160,160,160],
getLineColor: [0, 0, 0],
autoHighlight: true,
pickable: true ,
onClick: setTooltip
}),
]
});
deckoverlay.setMap(map);
//***********************************************
/* map.data.loadGeoJson('parcela.json');
map.data.setStyle({
clickable: true ,
strokeWeight: 1
});
map.data.addListener('click', function(event) {
var feat = event.feature;
var html = "<b>Partida: "+feat.getProperty('partida')+"</b><br>Parcela: "+feat.getProperty('parcela_numero');
html += "<br>Objeto Siser: "+feat.getProperty('numero_objeto_siser');
info.setContent(html);
info.setPosition(event.latLng);
info.setOptions({pixelOffset: new google.maps.Size(0,-34)});
info.open(map);
map.data.revertStyle();
map.data.overrideStyle(event.feature, {strokeWeight: 2,strokeColor: 'red' })
var cor=event.latLng;
createMarker(cor);
});
*/
});
function createMarker(latlng) {
if(marker != undefined && marker != ''){
marker.setMap(null);
marker = '';
}
map.setCenter(latlng);
marker = new google.maps.Marker({
draggable:false,
animation: google.maps.Animation.DROP,
map: map,
position: latlng,
});
var lookTo = latlng;
var panoOptions = {
position: lookTo,
panControl: false,
addressControl: false,
linksControl: false,
zoomControlOptions: false
};
var pano = new google.maps.StreetViewPanorama(document.getElementById('pano'),panoOptions);
// initialize a new streetviewService object
var service = new google.maps.StreetViewService;
service.getPanoramaByLocation(pano.getPosition(), 50, function(panoData) {
// if the function returned a result
// the GPS coordinates of the streetview camera position
var panoCenter = panoData.location.latLng;
// this is where the magic happens!
// the "computeHeading" function calculates the heading with the two GPS coordinates entered as parameters
var heading = google.maps.geometry.spherical.computeHeading(panoCenter, lookTo);
// now we know the heading (camera direction, elevation, zoom, etc) set this as parameters to the panorama object
var pov = pano.getPov();
pov.heading = heading;
pano.setPov(pov);
// set a marker on the location we are looking at, to verify the calculations were correct
var marker = new google.maps.Marker({
map: pano,
position: lookTo
});
});
}
function busca(){
parti= document.getElementById('partida').value ;
var dato = "partida=" + parti ;
\$.ajax({
url: "buscopartidamapa.php",
data: dato,
type: "POST",
success:
function(resp){
if (resp != 0){
var elem = resp.split('|');
lat = elem[0];
lon = elem[1];
var myResult = new google.maps.LatLng(lat,lon);
createMarker(myResult);
}
}
})
}
function buscaobj(){
objeto= document.getElementById('objeto').value ;
var dato = "objeto=" + objeto ;
\$.ajax({
url: "buscoobjeto.php",
data: dato,
type: "POST",
success:
function(resp){
if (resp != 0){
var elem = resp.split('|');
lat = elem[0];
lon = elem[1];
var myResult = new google.maps.LatLng(lat,lon);
createMarker(myResult);
}
}
})
}
function tecla1(e){
(e.keyCode)?k=e.keyCode:k=e.which;
if(k==13){
busca();
}
}
function tecla2(e){
(e.keyCode)?k=e.keyCode:k=e.which;
if(k==13){
geocode();
}
}
</script>
</head>
<body>
<div id="container">
</div>
<div id="wb_LayoutGrid1">
<div id="LayoutGrid1">
<div class="row">
<div class="col-1">
<input type="button" id="Button1" onclick="busca();return false;" name="" value="Partida">
<input type="text" id="partida" onkeyup="tecla1(event);return false;" name="partida" value="" spellcheck="false">
</div>
<div class="col-2">
<input type="button" id="Button2" onclick="geocode();return false;" name="" value="Direccin">
<input type="text" id="dire" onkeyup="tecla2(event);return false;" name="dire" value="" spellcheck="false">
</div>
<div class="col-3">
<input type="button" id="Button3" onclick="buscaobj();return false;" name="" value="Objeto">
<input type="text" id="objeto" onkeyup="tecla1(event);return false;" name="objeto" value="" spellcheck="false">
</div>
</div>
</div>
</div>
<div id="wb_LayoutGrid2">
<div id="LayoutGrid2">
<div class="row">
<div class="col-1">
<div id="map_canvas">
</div>
</div>
<div class="col-2">
<div id="pano">
</div>
</div>
</div>
</div>
</div>
</body>
</html>
Did this file decode correctly?
Original Code
<?php echo "<\x21do\x63\x74ype\x20ht\x6dl>\n<h\x74m\x6c\x3e\n<\x68e\x61d\x3e\n<\x6deta ch\x61\x72\x73\x65t=\"u\x74\x66-8\">\n\x3ctitle>Ma\x70\x61 Propi\x65da\x64\x65\x73\x3c/\x74it\x6c\x65\x3e\n\x3cm\x65\x74\x61 \x6eame\x3d\x22\x67\x65n\x65ra\x74\x6f\x72\x22 \x63o\x6et\x65\x6e\x74\x3d\"\x57YS\x49\x57Y\x47\x20\x57\x65\x62 Bu\x69ld\x65r\x2015\x20- h\x74\x74p://www.\x77ys\x69w\x79\x67\x77e\x62bu\x69\x6cd\x65\x72.com\">\n<\x6d\x65t\x61\x20\x6ea\x6de=\x22v\x69\x65w\x70o\x72t\" c\x6f\x6e\x74ent\x3d\x22\x77idth\x3dd\x65v\x69\x63e-\x77\x69dth,\x20initi\x61l-scale=1.\x30\">\n<l\x69n\x6b\x20\x68ref=\"h\x74\x74\x70s://\x66o\x6ets\x2egoog\x6ce\x61pis\x2eco\x6d/\x63s\x73?fam\x69\x6c\x79=Ro\x62\x6ft\x6f:\x330\x30\x22 rel\x3d\x22\x73\x74\x79l\x65s\x68eet\">\n\x3c\x6ci\x6e\x6b h\x72\x65f\x3d\x22h\x74\x74\x70\x73://\x66\x6fnt\x73\x2e\x67oogl\x65\x61\x70is\x2e\x63\x6f\x6d/\x63\x73s?\x66amil\x79=\x52ubik+\x4dono+O\x6ee\x22 r\x65l=\"s\x74yl\x65\x73\x68\x65\x65\x74\"\x3e\n<\x6c\x69\x6ek\x20\x68\x72e\x66=\x22\x68\x74\x74\x70s://\x66\x6f\x6ets\x2egoo\x67\x6c\x65a\x70is.\x63o\x6d/c\x73\x73?family=\x52\x61l\x65wa\x79\x22 \x72\x65l=\"\x73t\x79les\x68eet\">\n<l\x69\x6e\x6b\x20\x68\x72\x65\x66=\"ht\x74p\x73://fo\x6ets\x2eg\x6f\x6fgl\x65\x61\x70i\x73\x2ec\x6fm/c\x73\x73?f\x61\x6d\x69\x6cy\x3dR\x6f\x62ot\x6f\x22\x20\x72e\x6c=\"\x73t\x79lesh\x65\x65t\x22\x3e\n\x3c\x6ci\x6ek\x20\x68ref\x3d\"h\x74tp\x73://fo\x6e\x74\x73\x2e\x67\x6f\x6fg\x6cea\x70is\x2ec\x6fm/\x63\x73s?fam\x69ly\x3d\x53\x65g\x6f\x65+U\x49:\x33\x300\x22 \x72e\x6c\x3d\x22s\x74y\x6ce\x73\x68\x65\x65\x74\x22\x3e\n<l\x69n\x6b hr\x65f=\x22\x68\x74\x74p\x73://f\x6fn\x74s.\x67\x6fog\x6c\x65a\x70i\x73.\x63o\x6d/cs\x73?\x66a\x6di\x6cy=\x4ca\x74o:4\x30\x30\x26\x73\x75\x62\x73e\x74\x3d\x6cat\x69n-ex\x74\x22 r\x65l\x3d\x22s\x74\x79\x6c\x65\x73\x68e\x65\x74\"\x3e\n<li\x6e\x6b \x68\x72e\x66=\"c\x6fnt\x72\x61lo\x722.\x63\x73\x73\x22 \x72\x65\x6c=\"\x73t\x79les\x68eet\">\n\x3c\x6ci\x6e\x6b\x20h\x72\x65\x66=\"m\x61\x70a\x62u\x73\x63\x61\x2ec\x73s\"\x20\x72\x65l\x3d\"s\x74\x79\x6c\x65s\x68e\x65\x74\"\x3e\n\x3c\x73\x63r\x69pt\x20\x73\x72c=\"\x68t\x74\x70\x73://\x61\x6aax.g\x6fog\x6ceapi\x73.c\x6fm/aj\x61\x78/l\x69\x62\x73/\x6a\x71u\x65\x72y/1.6.\x32/\x6a\x71\x75ery\x2emi\x6e.\x6a\x73\x22>\x3c/\x73\x63\x72\x69\x70\x74\x3e\n<\x73cr\x69p\x74 s\x72\x63=\"htt\x70\x73://u\x6epkg.\x63o\x6d/\x64\x65ck.g\x6c\x40^7\x2e0\x2e\x39/d\x69\x73\x74\x2e\x6d\x69\x6e\x2e\x6as\x22></\x73crip\x74>\n<s\x63\x72\x69\x70\x74 \x73\x72\x63\x3d\x22h\x74\x74\x70s://\x6dap\x73\x2e\x67oo\x67l\x65\x61\x70i\x73\x2e\x63o\x6d/m\x61ps/\x61pi/j\x73?\x6b\x65y\x3d\x41I\x7a\x61\x53\x79\x42\x70\x6d8\x46\x693\x66\x6b3\x5a\x4e\x6c\x76\x59BPrX8s\x50f\x4bj3\x7a\x56A\x64\x46s\x6b&l\x69b\x72\x61\x72ie\x73\x3d\x76i\x73\x75\x61\x6c\x69zat\x69\x6fn\">\x3c/\x73cri\x70t> \x20\x20 \x20 \x20\x20 \x20\x20\x20\x20\x20\x20 \x20 \x20 \x20\x20 \x20 \x20\x20 \x20\x20\x20 \x20 <\x73c\x72ip\x74 src=\x22js/\x6ci\x6e\x65a.\x6as\x22\x3e\x3c/\x73\x63ript>\n\n\x3c\x73crip\x74\x3e\n\x76a\x72 m\x61\x70;\n\x76\x61\x72 m\x61\x72\x6b\x65\x72;\n\n</scr\x69pt\x3e\n\n<scrip\x74>\n\$(d\x6f\x63u\x6dent).re\x61dy(\x66u\x6e\x63t\x69o\x6e(){\n\n\x20\x20\x20 va\x72\x20loo\x6b\x54\x6f\x20\x3d n\x65\x77 \x67o\x6fg\x6ce\x2e\x6d\x61p\x73.\x4ca\x74\x4cng(-\x33\x33.8975\x303\x333\x327\x35\x304\x38, -60.57\x35\x3367\x36641135\x314)\x3b \n \x20 \x20\x20v\x61r\x20i\x6efo \x3d \x6eew\x20goo\x67\x6c\x65\x2ema\x70\x73\x2eInfoW\x69nd\x6fw();\n \x20\x20\x20 v\x61r\x20pa\x6eoOp\x74\x69o\x6es\x20= {\n \x20 \x20 \x20\x20\x20\x20\x20\x20\x70ositi\x6fn:\x20l\x6fo\x6b\x54\x6f,\n \x20\x20 p\x61\x6e\x43o\x6e\x74ro\x6c:\x20f\x61l\x73e,\n \x20 \x20\x20\x20\x20\x20\x20\x20\x20 \x61ddress\x43\x6fn\x74\x72o\x6c: \x66als\x65,\n \x20 \x20\x20 \x20\x20\x20 \x20l\x69n\x6bs\x43\x6f\x6e\x74rol:\x20\x66\x61\x6cse,\n\x20 \x20\x20 \x20 \x20 \x7a\x6fo\x6d\x43\x6fn\x74r\x6f\x6cO\x70tio\x6e\x73: fal\x73\x65\n\x20 \x20 \x20\x20}\x3b\n\n \x20\x20var \x70\x61\x6e\x6f =\x20n\x65w\x20 \x67\x6f\x6f\x67\x6ce.ma\x70s.\x53t\x72eet\x56ie\x77\x50\x61\x6eoram\x61(\x64oc\x75\x6d\x65\x6e\x74\x2ege\x74\x45\x6ceme\x6et\x42yI\x64(\x27p\x61\x6e\x6f'),p\x61\x6eo\x4f\x70\x74\x69\x6fn\x73)\x3b\n //\x20\x69n\x69t\x69\x61lize \x61\x20n\x65w \x73t\x72ee\x74\x76iew\x53\x65r\x76ice \x6f\x62je\x63t\n \x20 \x20 \x76ar\x20servi\x63e =\x20\x6e\x65w\x20\x67\x6f\x6f\x67l\x65.\x6da\x70\x73\x2e\x53tr\x65e\x74\x56iew\x53e\x72\x76i\x63\x65;\n \x20 // \x63a\x6c\x6c\x20th\x65 \"\x67\x65t\x50a\x6eor\x61ma\x42\x79\x4c\x6f\x63ati\x6f\x6e\"\x20\x66\x75nc\x74io\x6e of\x20the\x20\x53tre\x65t\x76\x69\x65\x77 \x53\x65\x72\x76i\x63e\x73\x20\x74o\x20r\x65\x74\x75r\x6e\x20\x74he c\x6co\x73es\x74\x20\x73t\x72ee\x74view \x70\x6fsi\x74\x69on \x66or \x74\x68\x65\x20en\x74\x65\x72\x65\x64\x20\x63o\x6frd\x69\x6ea\x74e\x73\n/* \x20\x20\x20\x20s\x65rv\x69ce.g\x65\x74\x50\x61\x6eo\x72\x61\x6d\x61\x42yLo\x63a\x74i\x6fn(pano\x2e\x67e\x74P\x6f\x73i\x74\x69\x6f\x6e(),\x20\x35\x30,\x20fu\x6e\x63tio\x6e(\x70\x61n\x6fD\x61ta)\x20{\n \x20\x20 //\x20\x69\x66\x20\x74he \x66u\x6e\x63t\x69\x6f\x6e \x72etur\x6e\x65\x64\x20\x61 resul\x74\n \x20 \x20 \x20\x20 \x20 \x20\x20//\x20t\x68\x65\x20\x47P\x53 co\x6frd\x69na\x74\x65s\x20\x6f\x66\x20t\x68\x65 s\x74\x72ee\x74view\x20ca\x6d\x65\x72\x61 p\x6fs\x69tio\x6e\n\x20 \x20\x20 \x20\x20\x20\x20 va\x72 pa\x6eo\x43\x65nte\x72\x20= \x70a\x6eo\x44a\x74a.loca\x74\x69\x6fn.\x6c\x61tLn\x67;\n \x20 \x20 \x20\x20 //\x20\x74\x68is\x20i\x73\x20\x77he\x72\x65\x20\x74\x68\x65\x20magi\x63\x20ha\x70\x70e\x6es!\n \x20 \x20\x20\x20 \x20 \x20\x20 \x20//\x20the\x20\"\x63\x6f\x6d\x70\x75\x74e\x48\x65a\x64in\x67\"\x20\x66\x75\x6e\x63tio\x6e\x20\x63al\x63ulat\x65\x73 t\x68\x65 hea\x64in\x67\x20w\x69th\x20t\x68\x65 \x74\x77o GP\x53\x20\x63o\x6fr\x64ina\x74\x65s\x20\x65\x6ete\x72\x65\x64 \x61s\x20\x70\x61r\x61me\x74\x65\x72s\n\x20 \x20 \x20\x20 \x20 \x20\x20\x20v\x61r \x68\x65\x61\x64\x69n\x67\x20\x3d \x67\x6fogl\x65\x2e\x6da\x70s\x2e\x67\x65\x6f\x6det\x72\x79\x2e\x73\x70\x68e\x72ic\x61l\x2ec\x6f\x6dput\x65\x48ead\x69ng(\x70\x61no\x43en\x74er,\x20\x6cook\x54\x6f)\x3b\n\x20\x20\x20\x20 \x20 \x20 \x20 // n\x6fw\x20we\x20\x6bn\x6f\x77 \x74\x68\x65\x20h\x65\x61ding\x20(c\x61\x6d\x65\x72\x61\x20d\x69r\x65\x63\x74io\x6e,\x20\x65l\x65va\x74\x69\x6fn,\x20\x7a\x6fo\x6d,\x20\x65\x74c)\x20\x73\x65t\x20t\x68i\x73 as p\x61ra\x6d\x65\x74e\x72s\x20to \x74h\x65 p\x61\x6eor\x61\x6da\x20ob\x6a\x65\x63t\n\x20\x20 \x20 \x20\x20\x20\x20va\x72\x20p\x6f\x76\x20= \x70a\x6eo\x2e\x67\x65tPov()\x3b\n \x20 \x20\x20\x20 \x20 \x20p\x6fv\x2e\x68\x65\x61\x64i\x6e\x67 = \x68\x65\x61ding;\n \x20\x20\x20\x20\x20 \x20\x20 \x20\x20 pa\x6e\x6f\x2ese\x74\x50\x6fv(po\x76)\x3b\n \x20\x20\x20\x20 \x20 \x20\x20 \x20//\x20\x73\x65t\x20a\x20mar\x6ber on \x74he\x20lo\x63\x61tion\x20we a\x72e lo\x6f\x6bi\x6e\x67 \x61t, t\x6f \x76\x65\x72ify \x74\x68e c\x61lcula\x74\x69\x6fn\x73\x20wer\x65\x20\x63\x6f\x72rect\n \x20\x20 \x20\x20\x20\x20\x20 \x20 v\x61r\x20m\x61r\x6be\x72 =\x20\x6e\x65w\x20\x67o\x6f\x67\x6ce.map\x73.\x4d\x61\x72ker({\n\x20\x20 \x20 \x20 \x20\x20\x20 \x6d\x61\x70:\x20pan\x6f,\n\x20 \x20\x20\x20\x20 \x20\x20\x20\x20\x20\x20 \x20 po\x73\x69\x74\x69on:\x20\x6c\x6fo\x6b\x54o\n\x20 \x20\x20\x20\x20\x20 \x20\x20\x20 });\n \x20 })\x3b*/\n\n//******************************************\n\n\n \x20\x20co\x6es\x74\x20\x70ar\x63\x65\x6c\x61\x73\x20\x3d\x20\x20'p\x61r\x63\x65\x63h\x69\x63a\x2ej\x73on\x27;\n\n\x20 \x20\x20 \x66\x75\x6e\x63t\x69on set\x54oo\x6cti\x70({ob\x6a\x65ct})\x20{\n \x20 \x20\x20\x20 \x20\x20\x20\x20i\x66(\x6fb\x6ae\x63t){\n\x20\x20\x20\x20\x20 \x20 \x20\x20\x76\x61r \x68\x74\x6dl\x20=\x20\x22\x3cb\x3eP\x61rti\x64a: \x22+\x6f\x62\x6aect\x2ep\x72o\x70e\x72ties.\x70\x61rti\x64\x61+\"\x3c/b\x3e\x3c\x62r>\x22;\n\x20 \x20 \x20\x20\x20 \x20\x20 \x20 \x76a\x72 \x6ca\x74 = \x6f\x62j\x65ct.\x70r\x6f\x70\x65\x72t\x69\x65s\x2e\x6c\x61t\x3b\n\x20 \x20 \x20 \x20 \x20 \x20 v\x61\x72 \x6con\x20\x3d \x6fb\x6ae\x63t.p\x72o\x70\x65\x72\x74\x69\x65\x73\x2e\x6con\n \x20\x20\x20\x20 \x20 \x20\x20\x20\x20\x20\x76ar\x20m\x79\x52e\x73\x75\x6c\x74 =\x20ne\x77\x20g\x6f\x6fg\x6ce.\x6d\x61\x70\x73\x2eL\x61t\x4c\x6eg(la\x74,l\x6f\x6e);\n \x20\x20 \x20 \x20\x20\x20\x20\x20 \x20 in\x66o.\x73etConten\x74(\x68tml)\x3b\n \x20\x20\x20 \x20\x20 \x20\x20 \x20 in\x66o.\x73\x65t\x50\x6f\x73\x69tio\x6e(m\x79R\x65s\x75\x6ct)\x3b\n \x20\x20\x20 \x20\x20\x20\x20\x20\x20\x20\x20\x20 in\x66o.\x73et\x4fpt\x69\x6f\x6e\x73({\x70\x69\x78\x65\x6cO\x66\x66\x73et: \x6eew\x20\x67\x6fog\x6ce.\x6d\x61ps\x2eS\x69z\x65(0,6\x30)});\n\x20 \x20 \x20 \x69\x6e\x66o\x2e\x6f\x70\x65n(\x6d\x61\x70);\n \x20\x20\x20\x20 \x20 \x20 \x20c\x72e\x61\x74\x65Ma\x72k\x65r(\x6d\x79R\x65s\x75\x6ct)\x3b\x20 \x20 \x20\x20\x20\x20\x20\x20 \x20 \x20\x20\x20\n \x20 \x20 \x20\x20}els\x65{\n\n \x20\x20\x20\x20 \x20\x20 \x20\x20\x20}\n\x20\x20 \x20\x20\x20}\n\n//************************************************\n \x20\x20 ma\x70\x20= ne\x77\x20go\x6fg\x6ce\x2e\x6d\x61\x70\x73.\x4d\x61p(d\x6fc\x75me\x6e\x74\x2ege\x74\x45l\x65me\x6etB\x79\x49\x64('m\x61\x70\x5fc\x61\x6e\x76\x61s'), {\n \x20 c\x65n\x74er:\x20\x6e\x65\x77 g\x6f\x6fg\x6c\x65.\x6d\x61\x70s\x2eLat\x4c\x6eg(-\x333.\x389\x330\x393,\x20-6\x30.5\x3724\x35),\n \x20\x20\x20\x20\x20\x20 \x7aoo\x6d:\x31\x38,\n\x20 \x20\x20 \x20 \x6d\x61\x70Ty\x70eId:\x20g\x6fogl\x65\x2em\x61ps\x2e\x4dap\x54y\x70\x65Id.ROADMAP\n\x20 \x20\x20 \x20});\n\n//****************************************************\n \x20 \x20\x20\x20\x20\x20\x63\x6f\x6e\x73\x74 \x64\x65ck\x6fv\x65\x72\x6c\x61y = \x6ee\x77\x20\x64\x65ck\x2e\x47\x6fog\x6ceMaps\x4f\x76erl\x61\x79({\n\x20\x20 \x20\x20 \x20\x6c\x61yers:\x20[\n \x20 \x20 \x20 \x20\x20\x20\x20\x20\x20 n\x65w\x20\x64e\x63\x6b.G\x65oJ\x73o\x6eL\x61yer({\n\x20 \x20 \x20\x20 \x20\x20 \x20 \x20\x20\x20id:\x20\x27\x67\x65o',\n \x20\x20\x20 \x20 \x20 \x20\x20 \x20\x20\x20 d\x61\x74\x61:\x20par\x63\x65\x6c\x61\x73 ,\n\x20 \x20\x20\x20 \x20 \x20\x20 \x20\x20\x20\x20\x20\x20 \x20\x6f\x70\x61\x63ity: 0\x2e2,\n \x20 \x20\x20\x20\x20 \x20\x20\x20\x20 st\x72ok\x65\x64:\x20true,\n\x20\x20 \x20\x20\x20\x20\x20 \x20 \x20 \x20\x20\x66\x69ll\x65d:\x20t\x72\x75\x65,\n\x20 \x20\x20\x20 \x20 \x20\x20 \x20\x20\x20\x20\x20 \x20 e\x78\x74ru\x64e\x64: \x66\x61\x6cse,\n \x20 \x20\x20\x20\x20 \x20\x20\x20\x20\x20 \x77ir\x65fra\x6d\x65:\x20\x74r\x75\x65,\n\x20 \x20\x20\x20\x20\x20\x20\x20\x20 \x20 \x20 \x20\x20 vi\x73\x69b\x6c\x65:tru\x65,\n \x20\x20 \x20 \x20\x20 \x20\x20\x20\x20\x20\x20\x67\x65\x74\x46ill\x43\x6f\x6c\x6f\x72:\x20[\x31\x360,\x3160,16\x30],\n\x20\x20 \x20\x20\x20 \x20 \x20\x20\x20 \x20\x20 \x20 \x20 g\x65\x74Li\x6e\x65Col\x6f\x72:\x20[\x30, 0,\x200],\n \x20 \x20\x20\x20 \x20 \x20 \x20 \x20\x20a\x75\x74oHi\x67h\x6c\x69\x67\x68\x74: \x74\x72ue,\n\x20 \x20 \x20\x20 \x20\x20\x20 \x20\x20 \x20\x70\x69\x63k\x61\x62l\x65:\x20t\x72\x75\x65\x20,\n \x20 \x20 \x20 \x20 \x20 \x20\x6f\x6eCli\x63\x6b:\x20\x73\x65tT\x6fo\x6c\x74\x69p\n \x20\x20\x20\x20\x20\x20 \x20\x20 \x20 \x20 }),\n \x20\x20 \x20\x20\x20\x20\x20\x20]\n\x20 \x20\x20 \x20 })\x3b\n\n\x20\x20 \x20\x20\x20 \x20d\x65\x63k\x6f\x76erlay.\x73e\x74\x4dap(m\x61p)\x3b\n\n//***********************************************\n\n/*\x20 \x20 \x6d\x61p\x2ed\x61ta.\x6c\x6f\x61d\x47\x65\x6fJso\x6e('\x70\x61r\x63\x65\x6c\x61\x2e\x6as\x6fn\x27);\n\x20\x20 \x20\n\x20 \x20 \x20m\x61p\x2ed\x61\x74a\x2e\x73\x65\x74\x53\x74yle({\n \x20 \x20 \x20c\x6c\x69\x63ka\x62\x6ce:\x20tru\x65\x20,\n \x20\x20 \x20\x20 st\x72ok\x65We\x69g\x68t:\x201\n \x20\x20 \x20});\x20 \n\n\x20\x20\x20 \x20\x6d\x61\x70.\x64\x61ta\x2ea\x64\x64Listener('c\x6cick', f\x75nc\x74\x69on(\x65\x76ent)\x20{\n \x20 \x20 \x20 \x20\x76\x61\x72\x20fea\x74\x20=\x20e\x76\x65nt.fea\x74\x75\x72e;\n \x20 \x20\x20 \x20\x76\x61\x72\x20\x68\x74m\x6c =\x20\x22\x3c\x62\x3e\x50\x61r\x74id\x61: \x22+\x66ea\x74.g\x65tP\x72\x6f\x70\x65rty('\x70\x61r\x74ida')+\"\x3c/\x62\x3e\x3c\x62\x72>\x50a\x72c\x65\x6ca: \"+f\x65at\x2eget\x50\x72\x6fp\x65\x72\x74\x79('pa\x72\x63\x65\x6c\x61_\x6e\x75m\x65\x72o')\x3b\n \x20\x20\x20\x20\x20\x20h\x74m\x6c +\x3d \x22<b\x72\x3e\x4f\x62\x6aet\x6f S\x69s\x65r:\x20\x22+\x66e\x61\x74\x2eg\x65tPro\x70e\x72\x74\x79('\x6e\x75me\x72o_\x6f\x62\x6a\x65to_s\x69s\x65\x72\x27);\n \x20\x20\x20\x20 \x20 \x69n\x66o.\x73et\x43\x6fn\x74en\x74(\x68\x74\x6dl);\n \x20 \x20 \x20i\x6efo.\x73et\x50\x6f\x73it\x69on(\x65v\x65\x6et\x2e\x6c\x61t\x4c\x6eg)\x3b\n \x20 \x20\x20\x20\x20 info.s\x65t\x4f\x70t\x69ons({p\x69\x78\x65\x6c\x4ff\x66se\x74: \x6eew \x67\x6f\x6f\x67l\x65.\x6d\x61\x70s.\x53ize(0,-3\x34)})\x3b\n \x20\x20\x20 \x69\x6ef\x6f.op\x65n(\x6d\x61\x70)\x3b\n \x20 \x20 m\x61\x70\x2ed\x61ta.\x72e\x76e\x72t\x53\x74\x79\x6c\x65();\n\x20\x20 \x20\x20\x20\x20\x20\x20\x6dap\x2e\x64\x61ta.\x6fv\x65\x72rid\x65S\x74\x79le(ev\x65nt\x2e\x66\x65\x61t\x75re,\x20{\x73\x74\x72\x6fke\x57\x65ight:\x20\x32,\x73t\x72okeC\x6f\x6c\x6f\x72:\x20'r\x65d'\x20})\n\x20\x20 \x20 \x20var\x20\x63or=\x65\x76\x65nt.\x6c\x61\x74\x4c\x6eg;\n\x20 \x20 \x20 c\x72\x65at\x65\x4dar\x6b\x65r(c\x6fr);\n \x20 \x20\x20});\n*/\n});\n\nfu\x6ec\x74\x69o\x6e\x20cr\x65at\x65\x4darker(\x6catl\x6eg)\x20{\n\n\x20 \x69\x66(mar\x6b\x65r\x20!\x3d un\x64ef\x69n\x65\x64 \x26&\x20ma\x72k\x65\x72\x20\x21= \x27\x27){\n\x20 \x20\x20\x6da\x72k\x65\x72\x2e\x73\x65tM\x61\x70(\x6eull);\n \x20 mar\x6b\x65r\x20= \x27\x27;\n \x20}\x20\n\n\x20 \x6d\x61p.\x73e\x74Ce\x6eter(\x6c\x61tlng);\n \x20\x20\x6d\x61rke\x72\x20\x3d\x20\x6ee\x77 \x67\x6f\x6fgl\x65\x2e\x6daps.\x4da\x72ker({\n \x20 \x20d\x72agg\x61\x62l\x65:fa\x6cs\x65,\n \x20\x20\x20 \x61n\x69\x6d\x61t\x69\x6fn:\x20go\x6f\x67\x6ce.\x6da\x70s.A\x6e\x69\x6d\x61\x74i\x6f\x6e\x2e\x44R\x4fP,\n \x20\x20\x20 \x6d\x61\x70: m\x61\x70,\n \x20\x20 po\x73\x69\x74\x69on: \x6c\x61\x74l\x6e\x67,\n \x20 })\x3b\n\n\x20\x20 v\x61r l\x6fo\x6b\x54o\x20\x3d latl\x6e\x67;\x20\x20\n\n\x20 \x76\x61r \x70an\x6f\x4f\x70\x74i\x6f\x6es =\x20{\n\x20\x20\x20 \x20 \x20 \x20\x20\x20\x70o\x73iti\x6f\x6e:\x20\x6co\x6fkTo,\n \x20\x20 \x20\x20 \x20\x20p\x61nC\x6fntrol:\x20\x66\x61ls\x65,\n \x20\x20 \x20 \x20\x20\x20a\x64dre\x73sContr\x6f\x6c:\x20f\x61\x6cs\x65,\n\x20 \x20\x20 \x20 \x20 l\x69n\x6bsC\x6f\x6e\x74r\x6f\x6c: fals\x65,\n \x20\x20 \x20\x20\x20zoo\x6d\x43o\x6e\x74r\x6f\x6c\x4fp\x74\x69\x6fn\x73: \x66\x61\x6cse\n \x20\x20}\x3b\n\n \x20 \x76ar p\x61\x6e\x6f\x20\x3d\x20\x6eew \x20go\x6f\x67\x6c\x65\x2e\x6d\x61ps\x2eSt\x72eetVi\x65\x77Pan\x6f\x72a\x6da(do\x63u\x6de\x6e\x74\x2e\x67\x65t\x45\x6ceme\x6e\x74By\x49\x64(\x27\x70\x61\x6e\x6f'),\x70\x61\x6e\x6fOptio\x6e\x73);\n \x20 \x20//\x20in\x69\x74\x69\x61\x6ci\x7ae a\x20\x6eew\x20str\x65\x65\x74\x76ie\x77\x53\x65r\x76ice\x20ob\x6aec\x74\n\x20\x20 \x20var\x20s\x65rv\x69\x63e\x20= n\x65\x77 \x67o\x6fg\x6ce.\x6d\x61\x70\x73\x2e\x53tr\x65e\x74V\x69e\x77\x53er\x76ice;\n \x73er\x76\x69\x63\x65\x2e\x67\x65\x74P\x61n\x6f\x72\x61ma\x42y\x4c\x6f\x63\x61tion(p\x61no.g\x65tP\x6fsi\x74i\x6fn(), \x350,\x20fun\x63t\x69\x6f\x6e(\x70a\x6e\x6fD\x61ta) {\n\x20 \x20\x20\x20\x20 // \x69\x66 \x74he fun\x63\x74\x69\x6fn\x20r\x65\x74\x75\x72ne\x64\x20\x61\x20\x72es\x75l\x74\n\x20 \x20\x20 \x20 \x20//\x20\x74he \x47PS co\x6f\x72d\x69nat\x65\x73 o\x66 t\x68e\x20s\x74\x72\x65etv\x69\x65w\x20c\x61\x6d\x65ra\x20p\x6fs\x69t\x69\x6f\x6e\n\x20 \x20\x20 \x20 \x20\x20 \x20\x76a\x72\x20\x70a\x6e\x6fCent\x65\x72 = pano\x44\x61t\x61.l\x6f\x63\x61\x74\x69on\x2e\x6cat\x4cng\x3b\n \x20 \x20\x20 //\x20\x74\x68\x69s\x20is \x77here \x74h\x65\x20\x6dagi\x63 hap\x70\x65n\x73!\n \x20\x20\x20 \x20 \x20 \x20\x20// the \"\x63o\x6dp\x75\x74e\x48e\x61\x64i\x6eg\x22\x20\x66\x75\x6e\x63t\x69o\x6e\x20\x63\x61\x6ccula\x74es\x20th\x65\x20\x68ead\x69ng with\x20\x74he \x74w\x6f\x20\x47\x50\x53 \x63oor\x64\x69n\x61\x74e\x73 e\x6ete\x72\x65d \x61s\x20\x70\x61\x72\x61\x6d\x65t\x65\x72\x73\n\x20 \x20 \x20 \x20 \x76a\x72 h\x65\x61\x64ing \x3d\x20g\x6fogle\x2ema\x70s.\x67eo\x6d\x65\x74r\x79.\x73ph\x65\x72\x69\x63a\x6c.\x63\x6fmp\x75t\x65\x48\x65ad\x69n\x67(\x70a\x6e\x6f\x43en\x74\x65r,\x20\x6c\x6fo\x6b\x54o)\x3b\n\x20 \x20\x20 \x20 \x20\x20\x20\x20 //\x20\x6e\x6fw \x77e\x20\x6bnow \x74\x68\x65 \x68e\x61\x64i\x6e\x67\x20(c\x61\x6de\x72a direct\x69on, e\x6c\x65\x76\x61tio\x6e,\x20zo\x6f\x6d, etc) \x73e\x74\x20th\x69s\x20a\x73\x20p\x61ram\x65\x74\x65r\x73\x20\x74\x6f\x20the\x20\x70an\x6fr\x61m\x61\x20\x6f\x62j\x65c\x74\n\x20 \x20\x20\x20\x20 \x20\x20\x20 \x20\x20v\x61\x72 \x70\x6fv \x3d\x20p\x61n\x6f.ge\x74Pov();\n \x20\x20\x20 \x20\x20 \x20pov\x2e\x68e\x61\x64i\x6eg\x20\x3d\x20\x68\x65ading;\n \x20\x20 \x20\x20\x70\x61\x6eo.\x73e\x74Pov(\x70ov)\x3b\n\x20 \x20 \x20 \x20 //\x20set \x61 m\x61\x72\x6ber \x6f\x6e t\x68\x65\x20lo\x63\x61t\x69on\x20\x77\x65 \x61\x72\x65 \x6coo\x6b\x69\x6eg at, to \x76\x65rify th\x65\x20\x63\x61\x6cc\x75\x6c\x61t\x69o\x6es were\x20\x63or\x72ec\x74\n\x20\x20 \x20 \x20\x20 \x20 \x76\x61r m\x61r\x6b\x65\x72 \x3d \x6ee\x77\x20g\x6fog\x6ce.map\x73\x2e\x4dar\x6ber({\n \x20 \x20 \x20 \x20\x20\x20\x20 \x20m\x61\x70:\x20\x70\x61no,\n\x20\x20\x20\x20 \x20 \x20 \x20 \x20\x20\x20\x20\x20 \x70\x6fs\x69\x74ion: \x6c\x6f\x6fk\x54o\n\x20\x20\x20 \x20\x20\x20\x20 \x20});\n\x20\x20 \x20 });\n}\n\n\x66\x75\x6e\x63\x74i\x6fn\x20\x62\x75s\x63\x61(){\n \x20pa\x72\x74\x69\x3d\x20\x20docu\x6de\x6et.g\x65\x74\x45\x6c\x65\x6de\x6e\x74B\x79\x49d('\x70art\x69d\x61\x27).\x76alu\x65 ;\n\x20\x20 va\x72 \x64ato =\x20\x22pa\x72\x74ida\x3d\"\x20+\x20pa\x72\x74i ;\n \x20 \$.aja\x78({\n\x20\x20 \x75r\x6c: \x22\x62u\x73co\x70ar\x74\x69dam\x61pa\x2ephp\x22,\n \x20\x20 \x20\x20\x64ata:\x20\x64\x61t\x6f,\n\x20 \x20\x20\x20 \x20\x20\x74\x79\x70e:\x20\x22\x50O\x53\x54\x22,\n \x20 \x20 s\x75\x63\x63ess:\n \x20\x20\x20\x20\x20 \x20\x20\x66un\x63\x74\x69\x6fn(\x72\x65\x73\x70){\n \x20\x20 \x20 if (r\x65\x73\x70 !\x3d\x20\x30){\n \x20\x20\x20\x20 \x20 \x20\x20 \x20 var el\x65\x6d\x20\x3d\x20r\x65\x73p.split('|\x27);\n\x20 \x20\x20\x20\x20\t \x20\x20\x20 l\x61t \x3d\x20\x65lem[0]\x3b\n \x20 \t \x20\x20\x20 lon \x3d e\x6c\x65\x6d[\x31];\n\n\x20 \x20\x20 \x20\x20 \x76\x61r\x20\x6dy\x52e\x73ult\x20= \x6ee\x77\x20go\x6fg\x6ce\x2e\x6da\x70s\x2e\x4c\x61\x74Lng(\x6ca\x74,\x6c\x6f\x6e)\x3b\n\x20 \x20 \x20\x20\x20 \x20 \x63\x72ea\x74\x65M\x61\x72\x6b\x65r(m\x79\x52esul\x74); \x20 \n \x20\x20\x20\x20\x20 \x20\x20\x20 }\n\x20 \x20 \x20\x20\x20\x20}\n\x20\x20 })\n}\n\n\x66\x75\x6e\x63tio\x6e\x20b\x75scaobj(){\n\x20\x20\x20ob\x6aet\x6f\x3d \x20do\x63um\x65\x6e\x74.\x67e\x74El\x65\x6d\x65\x6etBy\x49\x64('\x6fbj\x65t\x6f')\x2e\x76\x61lu\x65\x20;\n\x20 \x20va\x72\x20d\x61\x74o\x20=\x20\x22\x6f\x62\x6ae\x74o\x3d\"\x20+\x20objeto\x20;\n\x20\x20\x20\$.a\x6a\x61x({\n\x20 \x20\x75\x72l:\x20\x22\x62us\x63o\x6f\x62je\x74o.\x70\x68p\",\n\x20\x20 \x20 \x20\x20 \x64\x61\x74\x61: \x64\x61t\x6f,\n\x20 \x20 \x20 \x20 \x74y\x70\x65: \"\x50\x4fST\",\n \x20\x20\x20 \x20 suc\x63\x65\x73s:\n \x20\x20\x20\x20\x20f\x75n\x63tion(r\x65\x73p){\n\x20\x20\x20 \x20\x20 \x20if (\x72\x65\x73p !=\x20\x30){\n \x20 \x20\x20 \x20 \x20\x20 \x20v\x61\x72\x20el\x65\x6d\x20\x3d \x72es\x70\x2e\x73\x70l\x69t('|\x27)\x3b\n\x20\x20 \x20 \t \x20\x20\x20\x20\x20lat =\x20e\x6c\x65\x6d[\x30]\x3b\n \x20\t \x20 \x20 \x20\x6c\x6fn \x3d \x65l\x65m[1]\x3b\n\n\x20\x20\x20 \x20\x20 \x20 \x20\x20 \x20 v\x61\x72 \x6d\x79Result\x20= \x6e\x65w \x67\x6fog\x6c\x65\x2emaps.\x4cat\x4c\x6e\x67(l\x61t,lo\x6e)\x3b\n\x20\x20\x20\x20 \x20\x20\x20 \x63\x72ea\x74e\x4d\x61r\x6b\x65r(\x6d\x79Re\x73\x75l\x74)\x3b \x20 \n\x20\x20\x20\x20\x20 \x20\x20\x20\x20\x20 }\n \x20 \x20 }\n\x20 })\n}\n\n\nfu\x6ect\x69o\x6e tecl\x61\x31(\x65){\n\x20 (e\x2e\x6beyC\x6f\x64\x65)?k\x3de.k\x65yCod\x65:k=\x65\x2e\x77hi\x63h;\n \x20\x20\x69f(\x6b=\x3d1\x33){\n\x20 \x20b\x75\x73\x63\x61();\n\x20 \x20}\n}\n\n\x66u\x6e\x63t\x69\x6fn\x20\x74\x65c\x6c\x61\x32(e){\n \x20(e.\x6b\x65\x79C\x6f\x64e)?k\x3de.k\x65yCo\x64\x65:k=e\x2e\x77\x68\x69\x63\x68;\n \x69\x66(\x6b\x3d\x3d1\x33){\n \x20 \x20\x20g\x65\x6f\x63\x6f\x64e();\n \x20}\n}\n\x3c/s\x63rip\x74>\n\n\n</\x68\x65ad\x3e\n\x3cbod\x79\x3e\n\x3cdiv \x69\x64=\x22c\x6fn\x74\x61\x69n\x65r\">\n\x3c/\x64\x69\x76>\n<di\x76 \x69\x64\x3d\"w\x62\x5f\x4c\x61yo\x75\x74\x47\x72i\x641\x22>\n<\x64\x69v\x20\x69\x64\x3d\"L\x61\x79outGrid\x31\"\x3e\n\x3cd\x69v\x20c\x6ca\x73\x73=\"\x72\x6f\x77\">\n<\x64i\x76\x20c\x6ca\x73s=\x22col-\x31\x22>\n\x3ci\x6e\x70ut t\x79pe\x3d\x22\x62u\x74ton\" \x69\x64\x3d\"\x42\x75\x74\x74on1\x22 \x6fn\x63li\x63\x6b\x3d\"busca();re\x74ur\x6e f\x61\x6cse\x3b\"\x20na\x6d\x65\x3d\"\x22\x20\x76\x61\x6c\x75e=\x22\x50\x61\x72ti\x64\x61\x22>\n\x3ci\x6ep\x75t \x74\x79p\x65=\x22t\x65xt\x22 \x69\x64\x3d\"p\x61\x72tida\x22 \x6f\x6ekey\x75p\x3d\x22t\x65\x63la1(\x65\x76\x65\x6e\x74)\x3bret\x75r\x6e\x20f\x61\x6c\x73e;\x22\x20\x6ea\x6de=\x22p\x61r\x74ida\"\x20\x76\x61l\x75\x65\x3d\x22\x22\x20spe\x6cl\x63\x68e\x63k\x3d\"\x66\x61\x6cs\x65\"\x3e\n\x3c/d\x69\x76\x3e\n<di\x76 \x63\x6c\x61ss=\x22\x63\x6fl-2\x22\x3e\n\x3ci\x6eput \x74y\x70\x65=\x22bu\x74\x74on\x22\x20id=\"\x42\x75\x74t\x6f\x6e2\" onc\x6c\x69\x63\x6b=\"\x67e\x6fco\x64\x65()\x3b\x72\x65\x74\x75rn\x20\x66\x61\x6cs\x65;\" \x6e\x61m\x65=\"\x22\x20val\x75\x65=\x22\x44i\x72e\x63cin\">\n<i\x6eput \x74\x79p\x65\x3d\x22t\x65xt\x22\x20i\x64=\"\x64\x69\x72e\"\x20onk\x65yup=\"t\x65\x63\x6ca\x32(\x65ve\x6et)\x3b\x72et\x75\x72\x6e \x66\x61lse\x3b\"\x20na\x6de=\x22di\x72e\" \x76a\x6c\x75\x65=\x22\" \x73\x70ell\x63h\x65ck=\x22f\x61\x6c\x73e\"\x3e\n</d\x69\x76>\n<\x64\x69\x76\x20cla\x73s\x3d\"c\x6fl-3\"\x3e\n<i\x6ep\x75t\x20type=\x22bu\x74\x74on\x22\x20i\x64\x3d\"\x42\x75\x74\x74\x6fn3\" on\x63lic\x6b=\x22\x62uscao\x62\x6a()\x3br\x65tu\x72\x6e\x20fa\x6cse;\x22 \x6ea\x6d\x65\x3d\"\" v\x61\x6cue=\"\x4f\x62j\x65\x74o\">\n\x3c\x69npu\x74\x20\x74y\x70\x65=\x22text\"\x20\x69d=\"\x6fb\x6a\x65\x74o\"\x20on\x6b\x65\x79u\x70=\"te\x63\x6c\x61\x31(ev\x65\x6et);\x72\x65\x74u\x72n\x20f\x61l\x73e;\" nam\x65=\"\x6fb\x6ae\x74\x6f\x22 \x76\x61\x6cu\x65\x3d\"\" s\x70\x65l\x6c\x63h\x65\x63k=\"\x66als\x65\x22>\n</\x64i\x76>\n\x3c/d\x69\x76>\n</\x64i\x76\x3e\n\x3c/div\x3e\n<di\x76 \x69d\x3d\x22\x77b\x5fL\x61\x79ou\x74\x47r\x69d\x32\">\n\x3c\x64iv id=\x22\x4cay\x6fut\x47ri\x642\x22>\n\x3cd\x69v\x20cla\x73s\x3d\x22\x72o\x77\x22>\n\x3cdiv\x20c\x6c\x61s\x73\x3d\"c\x6f\x6c-1\"\x3e\n\x3cdiv \x69\x64=\x22m\x61\x70\x5fc\x61\x6e\x76a\x73\x22\x3e\n</\x64iv>\n</d\x69v\x3e\n\x3c\x64i\x76\x20cl\x61s\x73\x3d\"col-\x32\x22>\n<\x64\x69\x76 \x69d=\"pan\x6f\">\n\x3c/div\x3e\n</di\x76\x3e\n\x3c/d\x69v\x3e\n\x3c/d\x69v>\n\x3c/\x64\x69\x76\x3e\n\x3c/\x62\x6fd\x79\x3e\n\x3c/\x68\x74ml\x3e\n";
?>
Function Calls
None |
Stats
MD5 | 9803fa5f77e6df0f369bbb8d0cb862b3 |
Eval Count | 0 |
Decode Time | 116 ms |