if (!window['well']) {
    window['well'] = {};
}
if (!window['well']['location']) {
    window['well']['location'] = {};
    well.location.ip = '38.107.179.218';
    well.location.country = 'US';
    well.location.city = '(Unknown city)';
    well.location.region = '';
    well.location.latitude = '';
    well.location.longitude = '';
    if (window['google']) {
        if (google.loader.ClientLocation != null){
            well.location.source = 'google';
            well.location.country = google.loader.ClientLocation.country;
            well.location.city = google.loader.ClientLocation.city;
            well.location.region = google.loader.ClientLocation.region;
            well.location.latitude = google.loader.ClientLocation.latitude;
            well.location.longitude = google.loader.ClientLocation.longitude;
        }
    }
}
