From 43e4b781e606a6afe83e91092921b22f8ce46f52 Mon Sep 17 00:00:00 2001 From: Frank Schubert Date: Mon, 5 Jun 2023 12:29:34 +0200 Subject: [PATCH] Added lieboch smartfiber building import script --- .../01-addressdb_update_buildings.php | 283 +++ ...s__FTTx_ Lieboch Site Netz Smart Fiber.csv | 2099 +++++++++++++++++ 2 files changed, 2382 insertions(+) create mode 100755 scripts/addressdb/lieboch-smartfiber/01-addressdb_update_buildings.php create mode 100644 scripts/addressdb/lieboch-smartfiber/import/SDIBuilding__Locations__FTTx_ Lieboch Site Netz Smart Fiber.csv diff --git a/scripts/addressdb/lieboch-smartfiber/01-addressdb_update_buildings.php b/scripts/addressdb/lieboch-smartfiber/01-addressdb_update_buildings.php new file mode 100755 index 000000000..b31b607af --- /dev/null +++ b/scripts/addressdb/lieboch-smartfiber/01-addressdb_update_buildings.php @@ -0,0 +1,283 @@ +#!/usr/bin/php + $gem_kz]); + if(!$gemeinde) { + echo "Gemeinde $gem_name $gem_kz nicht gefunden\n"; + continue; + } + $gemeinde_id = $gemeinde->id; + + //if($nutzung == "Greenfield") continue; + + //continue; + // find address in AddressDB and update extrefs + + + $strasse_name = $db->escape($strasse_name); + $hausnummer_name = $db->escape($hausnummer_name); + + if($adrcd) { + // get Hausnummer to update + $hausnummer = ADBHausnummerModel::getFirst(['adrcd' => $adrcd]); + /*if(!$hausnummer) { + echo "Hausnummer adrcd $adrcd not found\n"; + }*/ + } + + if(!$hausnummer) { + // search Hausnummer + $strasse_search = [$strasse_name]; + + if(strpos($strasse_name, ' ') !== false) $strasse_search[] = str_replace(' ', '-', $strasse_name); + if(strpos($strasse_name, '-') !== false) $strasse_search[] = str_replace('-', ' ', $strasse_name); + if(strpos($strasse_name, '.') !== false) $strasse_search[] = str_replace('.', '. ', $strasse_name); + if(strpos($strasse_name, '.') !== false) $strasse_search[] = str_replace('.', '.-', $strasse_name); + if(strpos($strasse_name, '. ') !== false) $strasse_search[] = str_replace('. ', '.', $strasse_name); + if(strpos($strasse_name, '. ') !== false) $strasse_search[] = str_replace('. ', '.-', $strasse_name); + if(strpos($strasse_name, '.') !== false) $strasse_search[] = str_replace('.-', '.', $strasse_name); + if(strpos($strasse_name, '.') !== false) $strasse_search[] = str_replace('.-', '. ', $strasse_name); + + foreach($strasse_search as $search) { + if(strpos($search, 'ß') !== false) $strasse_search[] = str_replace('ß', 'ss', $search); + if(strpos($search, 'ä') !== false) $strasse_search[] = str_replace('ä', 'ae', $search); + if(strpos($search, 'ö') !== false) $strasse_search[] = str_replace('ö', 'oe', $search); + if(strpos($search, 'ü') !== false) $strasse_search[] = str_replace('ü', 'ue', $search); + + if(strpos($search, 'ss') !== false) $strasse_search[] = str_replace('ss', 'ß', $search); + if(strpos($search, 'ae') !== false) $strasse_search[] = str_replace('ae', 'ä', $search); + if(strpos($search, 'oe') !== false) $strasse_search[] = str_replace('oe', 'ö', $search); + if(strpos($search, 'ue') !== false) $strasse_search[] = str_replace('ue', 'ü', $search); + } + + + $sql = "SELECT * FROM view_hausnummer WHERE gemeinde_id = $gemeinde_id AND strasse IN ('". implode("', '", $strasse_search)."') AND hausnummer='$hausnummer_name'"; + //echo "$sql\n"; + /*if(preg_match('/^Tobelbader/i',$strasse_name)) { + echo "$sql\n"; + }*/ + $res = $db->query($sql); + + if($db->num_rows($res)) { + // get Hausnummer to update + //echo "Hausnummer per Suche gefunden\n"; + $data = $db->fetch_object($res); + $hausnummer = new ADBHausnummer($data->hausnummer_id); + } else { + // hausnummer anlegen + //echo "hausnummer anlegen\n"; + + + + $strasse = ADBStrasseModel::getFirst(["gemeinde_id" => $gemeinde_id, "name" => $strasse_name]); + if(!$strasse) die("Strasse $strasse_name (gemeinde_id $gemeinde_id; gem_kz $gem_kz) nicht gefunden\n"); + + $plz = ADBPlzModel::getFirst(["gemeinde_id" => $gemeinde_id, "plz" => $plz_name]); + if(!$plz) die("PLZ $plz_name nicht gefunden\n"); + + $ortschaft = ADBOrtschaftModel::getFirst(["gemeinde_id" => $gemeinde_id, "name" => $ort_name]); + if(!$ortschaft) die("ortschaft $ort_name nicht gefunden\n"); + + $hausnummer_data = [ + "netzgebiet_id" => $netzgebiet->id, + "adrcd" => ($adrcd) ? $adrcd : null, + "extref" => $hausnummer_extref, + "ortschaft_id" => $ortschaft->id, + "plz_id" => $plz->id, + "strasse_id" => $strasse->id, + "hausnummer" => $hausnummer_name, + "zusatz" => ($addresszusatz) ? $addresszusatz : null, + //"gps_lat" => $lat, + //"gps_long" => $long, + "unit_count" => ($unit_count) ? $unit_count : 1, + "freigabe" => $default_freigabe, + ]; + $hausnummer = ADBHausnummerModel::create($hausnummer_data); + //var_dump($hausnummer);exit; + $hausnummer->save(); + continue; + } + + } + + //echo "Hausnummer extref: \033[1m$hausnummer_extref\033[0m | gem: \033[1m$gem_name\033[0m | plz: \033[1m$plz_name\033[0m | ort: \033[1m$ort_name\033[0m | strasse: \033[1m$strasse_name\033[0m | hausnummer: \033[1m$hausnummer_name\033[0m |"; + //echo "Zusatz: \033[1m$addresszusatz\033[0m | (\033[1m$nutzung\033[0m) | ADRCD: \033[1m$adrcd\033[0m\n"; + + //var_dump($hausnummer);exit; + //continue; + if($hausnummer->netzgebiet_id != $netzgebiet->id) { + $hausnummer->netzgebiet_id = $netzgebiet->id; + //$hausnummer->save(); + } + if($hausnummer->extref != $hausnummer_extref) { + $hausnummer->extref = $hausnummer_extref; + //$hausnummer->save(); + } + if($lat && $long) { + $hausnummer->gps_lat = (float)$lat; + $hausnummer->gps_long = (float)$long; + } + $hausnummer->freigabe = $default_freigabe; + $hausnummer->save(); + + + + $existing_units_count = ADBWohneinheitModel::count(["hausnummer_id" => $hausnummer->id]); + //echo "$existing_units_count\n"; + + if(!$existing_units_count) { + $hausnummer->unit_count = $unit_count; + // create units + + for($u = 0; $u < $unit_count; $u++) { + $num = $u + 1; + + $wohneinheit_data = [ + 'hausnummer_id' => $hausnummer->id, + 'num' => $num, + 'tuer' => ($unit_count > 1) ? $num : null + ]; + + $wohneinheit = ADBWohneinheitModel::create($wohneinheit_data); + //continue; + $wohneinheit->save(); + } + } + + + +} \ No newline at end of file diff --git a/scripts/addressdb/lieboch-smartfiber/import/SDIBuilding__Locations__FTTx_ Lieboch Site Netz Smart Fiber.csv b/scripts/addressdb/lieboch-smartfiber/import/SDIBuilding__Locations__FTTx_ Lieboch Site Netz Smart Fiber.csv new file mode 100644 index 000000000..73ae9d9a8 --- /dev/null +++ b/scripts/addressdb/lieboch-smartfiber/import/SDIBuilding__Locations__FTTx_ Lieboch Site Netz Smart Fiber.csv @@ -0,0 +1,2099 @@ +ID;Type;Address;LotNumber;ZIP Code;City;Municipality Label;Municipality Name;Planned TU;Building type +25149469;FTTxCustomerLocation;Bachbauernweg 30;0.76;8144;Haselsdorf;Haselsdorf-Tobelbad;60618;2;Multiple dwellings +25002442;FTTxCustomerLocation;;;;;Lieboch;60629;1; +25012731;FTTxCustomerLocation;Siebweg 50;;8501;Graz-Umgebung;Lieboch;60629;1;Residential +25012732;FTTxCustomerLocation;Siebweg 15;;8501;Graz-Umgebung;Lieboch;60629;1;Company +25012733;FTTxCustomerLocation;Siebweg 15;;8501;Graz-Umgebung;Lieboch;60629;1;Residential +25012734;FTTxCustomerLocation;Einödstraße 53;;8501;Graz-Umgebung;Lieboch;60629;1;Residential +25012735;FTTxCustomerLocation;Einödstraße 91;;8501;Graz-Umgebung;Lieboch;60629;1;Residential +25012736;FTTxCustomerLocation;Siebweg 15;;8501;Graz-Umgebung;Lieboch;60629;1;Company +25017182;FTTxCustomerLocation;Pfarrgasse 10;;8501;Graz-Umgebung;Lieboch;60629;1; +25022881;FTTxCustomerLocation;Birkenstraße 19e;;8501;Lieboch;Lieboch;60629;2;Greenfield +25022882;FTTxCustomerLocation;Birkenstraße 19c;;8501;Lieboch;Lieboch;60629;2;Greenfield +25022883;FTTxCustomerLocation;Birkenstraße 13a;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022885;FTTxCustomerLocation;GST 2134/3 8;;8501;Lieboch;Lieboch;60629;12;Greenfield +25022886;FTTxCustomerLocation;GST 2134/3 9;;8501;Lieboch;Lieboch;60629;11;Greenfield +25022889;FTTxCustomerLocation;GST 2134/3 5;;8501;Lieboch;Lieboch;60629;6;Greenfield +25022890;FTTxCustomerLocation;GST 2134/3 4;;8501;Lieboch;Lieboch;60629;12;Greenfield +25022892;FTTxCustomerLocation;GST 2134/3 6;;8501;Lieboch;Lieboch;60629;12;Greenfield +25022894;FTTxCustomerLocation;GST 2134/3 2;;8501;Lieboch;Lieboch;60629;11;Greenfield +25022895;FTTxCustomerLocation;GST 2134/3 1;;8501;Lieboch;Lieboch;60629;12;Greenfield +25022896;FTTxCustomerLocation;GST 2134/3 3;;8501;Lieboch;Lieboch;60629;12;Greenfield +25022897;FTTxCustomerLocation;Birkenstraße 2;;8501;Lieboch;Lieboch;60629;15;Multiple dwellings +25022898;FTTxCustomerLocation;Feldstraße 12;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022899;FTTxCustomerLocation;Feldstraße 12;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022900;FTTxCustomerLocation;Birkenstraße 17;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022901;FTTxCustomerLocation;Birkenstraße 19;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022902;FTTxCustomerLocation;Lepethweg 6;;8501;Lieboch;Lieboch;60629;1;Residential +25022903;FTTxCustomerLocation;Packerstraße 135;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022904;FTTxCustomerLocation;Birkenstraße 19a;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022905;FTTxCustomerLocation;Birkenstraße 23;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022906;FTTxCustomerLocation;Birkenstraße 16c;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022907;FTTxCustomerLocation;Packerstraße 135;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022908;FTTxCustomerLocation;Birkenstraße 32;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022909;FTTxCustomerLocation;Birkenstraße 30;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022910;FTTxCustomerLocation;Birkenstraße 30;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022911;FTTxCustomerLocation;Birkenstraße 30;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022912;FTTxCustomerLocation;Packerstraße 165;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022913;FTTxCustomerLocation;Packerstraße 171;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022914;FTTxCustomerLocation;Am Gries 11;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022915;FTTxCustomerLocation;Packerstraße 171;;8501;Lieboch;Lieboch;60629;1;Residential +25022916;FTTxCustomerLocation;Packerstraße 181;;8501;Lieboch;Lieboch;60629;1;Residential +25022917;FTTxCustomerLocation;Packerstraße 295;;8501;Lieboch;Lieboch;60629;1;Residential +25022918;FTTxCustomerLocation;Am Gries 11;;8501;Lieboch;Lieboch;60629;1;Residential +25022919;FTTxCustomerLocation;Packerstraße 185;;8501;Lieboch;Lieboch;60629;1;Residential +25022920;FTTxCustomerLocation;Packerstraße 295;;8501;Lieboch;Lieboch;60629;1;Residential +25022921;FTTxCustomerLocation;Packerstraße 295;;8501;Lieboch;Lieboch;60629;1;Residential +25022922;FTTxCustomerLocation;Packerstraße 295;;8501;Lieboch;Lieboch;60629;1;Residential +25022923;FTTxCustomerLocation;Packerstraße 181;;8501;Lieboch;Lieboch;60629;1;Residential +25022924;FTTxCustomerLocation;Packerstraße 213;;8501;Lieboch;Lieboch;60629;1;Residential +25022925;FTTxCustomerLocation;Blumengasse 7;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022926;FTTxCustomerLocation;Blumengasse 2;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022927;FTTxCustomerLocation;Arkenweg 22;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022928;FTTxCustomerLocation;Trattenweg 15;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022929;FTTxCustomerLocation;Trattenweg 11;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022930;FTTxCustomerLocation;Trattenweg 7;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022931;FTTxCustomerLocation;Strohmayerweg 10;;8501;Lieboch;Lieboch;60629;1;Residential +25022932;FTTxCustomerLocation;Schmiedgasse 5;;8501;Lieboch;Lieboch;60629;2;Greenfield +25022933;FTTxCustomerLocation;Schmiedgasse 8;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022934;FTTxCustomerLocation;Schmiedgasse 15;;8501;Lieboch;Lieboch;60629;2;Greenfield +25022935;FTTxCustomerLocation;Schmiedgasse 15;;8501;Lieboch;Lieboch;60629;2;Greenfield +25022936;FTTxCustomerLocation;Panoramaweg 9;;8501;Lieboch;Lieboch;60629;1;Residential +25022937;FTTxCustomerLocation;Am Waldrand 3;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022938;FTTxCustomerLocation;Steinerstraße 27;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022939;FTTxCustomerLocation;Schmiedgasse 17;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022940;FTTxCustomerLocation;Panoramaweg 19;;8501;Lieboch;Lieboch;60629;2;Greenfield +25022941;FTTxCustomerLocation;Wildgasse 12;;8501;Lieboch;Lieboch;60629;2;Greenfield +25022942;FTTxCustomerLocation;Wildgasse 5;;8501;Lieboch;Lieboch;60629;2;Greenfield +25022943;FTTxCustomerLocation;Am Waldrand 17;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022944;FTTxCustomerLocation;Panoramaweg 27;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022945;FTTxCustomerLocation;Wildgasse 2;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022946;FTTxCustomerLocation;Steinerstraße 2;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022947;FTTxCustomerLocation;Packerstraße 268;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022948;FTTxCustomerLocation;Sonnenweg 1;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022949;FTTxCustomerLocation;Steinerstraße 20;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022950;FTTxCustomerLocation;Eichengasse 30;;8501;Lieboch;Lieboch;60629;1;Residential +25022951;FTTxCustomerLocation;Eichengasse 10;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022952;FTTxCustomerLocation;Drosselgasse 1;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022953;FTTxCustomerLocation;Packerstraße 236;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022955;FTTxCustomerLocation;Packerstraße 236;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022956;FTTxCustomerLocation;Packerstraße 184;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022957;FTTxCustomerLocation;Hochstraße 25;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022958;FTTxCustomerLocation;Weidengasse 39;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022959;FTTxCustomerLocation;Weidengasse 39;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022960;FTTxCustomerLocation;Hangweg 18;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022961;FTTxCustomerLocation;Hangweg 18;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022962;FTTxCustomerLocation;Hangweg 18;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022963;FTTxCustomerLocation;Ringweg 17;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022964;FTTxCustomerLocation;Ringweg 19;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022965;FTTxCustomerLocation;Hangweg 16;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022966;FTTxCustomerLocation;Ringweg 5;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022967;FTTxCustomerLocation;Jägerweg 14;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022968;FTTxCustomerLocation;Jägerweg 30a;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022969;FTTxCustomerLocation;Jägerweg 28;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022970;FTTxCustomerLocation;Jägerweg 7a;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022971;FTTxCustomerLocation;Jägerweg 9a;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022972;FTTxCustomerLocation;Feldriegelstraße 57;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022973;FTTxCustomerLocation;Feldriegelstraße 65;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022974;FTTxCustomerLocation;Bachfeldgasse 43;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022975;FTTxCustomerLocation;Hügelweg 16;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022976;FTTxCustomerLocation;Feldriegelstraße 50;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022977;FTTxCustomerLocation;Feldriegelstraße 48a;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022978;FTTxCustomerLocation;Feldriegelstraße 54a;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022979;FTTxCustomerLocation;Feldriegelstraße 44;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022980;FTTxCustomerLocation;Feldriegelstraße 44;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022981;FTTxCustomerLocation;Obstgasse 4;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022982;FTTxCustomerLocation;Bachfeldgasse 31a;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022983;FTTxCustomerLocation;Bachfeldgasse 28;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022984;FTTxCustomerLocation;Bachfeldgasse 31a;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022985;FTTxCustomerLocation;Korngasse 2;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022986;FTTxCustomerLocation;Bachfeldgasse 31;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022987;FTTxCustomerLocation;Korngasse 3;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022988;FTTxCustomerLocation;Korngasse 5;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022989;FTTxCustomerLocation;Feldriegelstraße 42;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022990;FTTxCustomerLocation;Krengasse 9;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022991;FTTxCustomerLocation;Mittelgasse 7;;8501;Lieboch;Lieboch;60629;1;Residential +25022992;FTTxCustomerLocation;Mittelgasse 4;;8501;Lieboch;Lieboch;60629;1;Residential +25022993;FTTxCustomerLocation;Packerstraße 162;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022994;FTTxCustomerLocation;Floraweg 5;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022995;FTTxCustomerLocation;Floraweg 7;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022996;FTTxCustomerLocation;Floraweg 7;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022997;FTTxCustomerLocation;Kohlgraben 2;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022998;FTTxCustomerLocation;Josef Mihalits-Straße 20;;8501;Lieboch;Lieboch;60629;1;Greenfield +25022999;FTTxCustomerLocation;Josef Mihalits-Straße 20;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023000;FTTxCustomerLocation;Packerstraße 142;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023001;FTTxCustomerLocation;Packerstraße 142;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023002;FTTxCustomerLocation;Packerstraße 142;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023003;FTTxCustomerLocation;Josef Mihalits-Straße 6;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023004;FTTxCustomerLocation;Packerstraße 132;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023005;FTTxCustomerLocation;Josef Mihalits-Straße 4;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023006;FTTxCustomerLocation;Am Weiher 10;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023007;FTTxCustomerLocation;Packerstraße 140;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023008;FTTxCustomerLocation;Packerstraße 140;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023009;FTTxCustomerLocation;Kleegasse 8;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023010;FTTxCustomerLocation;Josef Mihalits-Straße 4;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023011;FTTxCustomerLocation;Am Weiher 14;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023012;FTTxCustomerLocation;Josef Mihalits-Straße 8;;8501;Lieboch;Lieboch;60629;1;Residential +25023013;FTTxCustomerLocation;Josef Mihalits-Straße 16;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023014;FTTxCustomerLocation;Feldriegelstraße 29;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023015;FTTxCustomerLocation;Dorfstraße 29;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023016;FTTxCustomerLocation;Feldriegelstraße 9a;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023017;FTTxCustomerLocation;Bachfeldgasse 7;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023018;FTTxCustomerLocation;Seilergasse 10a;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023019;FTTxCustomerLocation;Grillweg 9;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023020;FTTxCustomerLocation;Grillweg 5;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023021;FTTxCustomerLocation;Seilergasse 7;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023022;FTTxCustomerLocation;Grillweg 4;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023023;FTTxCustomerLocation;Bachfeldgasse 13;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023024;FTTxCustomerLocation;Bachfeldgasse 13;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023025;FTTxCustomerLocation;Packerstraße 255;;8501;Lieboch;Lieboch;60629;1;Residential +25023026;FTTxCustomerLocation;Packerstraße 255;;8501;Lieboch;Lieboch;60629;1;Residential +25023027;FTTxCustomerLocation;Kainachstraße 55;;8501;Lieboch;Lieboch;60629;1;Residential +25023028;FTTxCustomerLocation;Kainachstraße 55;;8501;Lieboch;Lieboch;60629;1;Residential +25023029;FTTxCustomerLocation;Süd Autobahn 1;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023030;FTTxCustomerLocation;Industriestrasse Süd 3;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023031;FTTxCustomerLocation;Süd Autobahn 1;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023032;FTTxCustomerLocation;Industriestrasse Süd 3;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023033;FTTxCustomerLocation;Industriestraße West 3;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023034;FTTxCustomerLocation;Industriestraße West 3;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023035;FTTxCustomerLocation;Industriestraße West 3;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023036;FTTxCustomerLocation;Industriestraße West 3;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023037;FTTxCustomerLocation;Industriestraße West 3;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023038;FTTxCustomerLocation;Industriestraße West 3;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023039;FTTxCustomerLocation;Doblerstraße 14;;8501;Lieboch;Lieboch;60629;1;Residential +25023040;FTTxCustomerLocation;Doblerstraße 20;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023041;FTTxCustomerLocation;H. Thalhammer-Straße 19;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023042;FTTxCustomerLocation;H. Thalhammer-Straße 19;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023043;FTTxCustomerLocation;Hans-Thalhammer-Straße 34;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023044;FTTxCustomerLocation;Hans-Thalhammer-Straße 40;;8501;Lieboch;Lieboch;60629;3;Greenfield +25023045;FTTxCustomerLocation;Hans-Thalhammer-Straße 28;;8501;Lieboch;Lieboch;60629;1;Residential +25023046;FTTxCustomerLocation;Bahnweg 10;;8501;Lieboch;Lieboch;60629;1;Residential +25023047;FTTxCustomerLocation;Bahnweg 10;;8501;Lieboch;Lieboch;60629;1;Residential +25023048;FTTxCustomerLocation;Bahnweg 11;;8501;Lieboch;Lieboch;60629;1;Residential +25023049;FTTxCustomerLocation;Bahnweg 5;;8501;Lieboch;Lieboch;60629;1;Residential +25023050;FTTxCustomerLocation;Bahnweg 5;;8501;Lieboch;Lieboch;60629;1;Residential +25023051;FTTxCustomerLocation;Bahnweg 5;;8501;Lieboch;Lieboch;60629;1;Residential +25023052;FTTxCustomerLocation;H. Thalhammer-Straße 3;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023053;FTTxCustomerLocation;Hans-Thalhammer-Straße 3;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023054;FTTxCustomerLocation;Einödstraße 19;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023055;FTTxCustomerLocation;Villengasse 3;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023056;FTTxCustomerLocation;Villengasse 15;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023057;FTTxCustomerLocation;Lusengasse 4;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023058;FTTxCustomerLocation;Getreideweg 17;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023059;FTTxCustomerLocation;Flurgasse 22g;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023060;FTTxCustomerLocation;Flurgasse 34;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023061;FTTxCustomerLocation;Flurgasse 26b;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023062;FTTxCustomerLocation;Flurgasse 24f;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023063;FTTxCustomerLocation;Waldgasse 27;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023064;FTTxCustomerLocation;Waldgasse 11;;8501;Lieboch;Lieboch;60629;1;Residential +25023065;FTTxCustomerLocation;Waldgasse 15;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023066;FTTxCustomerLocation;Radlstraße 18;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023067;FTTxCustomerLocation;Waldgasse 8;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023068;FTTxCustomerLocation;Waldgasse 19;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023069;FTTxCustomerLocation;Amselgasse 8;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023070;FTTxCustomerLocation;Amselgasse 6;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023071;FTTxCustomerLocation;Amselgasse 6;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023072;FTTxCustomerLocation;Föhrengasse 12;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023073;FTTxCustomerLocation;Föhrengasse 4;;8501;Lieboch;Lieboch;60629;1;Residential +25023074;FTTxCustomerLocation;Föhrengasse 10;;8501;Lieboch;Lieboch;60629;1;Residential +25023075;FTTxCustomerLocation;Weingartenstraße 93;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023076;FTTxCustomerLocation;Forstgasse 27;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023077;FTTxCustomerLocation;Forstgasse 23;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023078;FTTxCustomerLocation;B 11;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023079;FTTxCustomerLocation;Forstgasse 18;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023080;FTTxCustomerLocation;Teichstraße 15;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023081;FTTxCustomerLocation;Teichstraße 12;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023082;FTTxCustomerLocation;Teichstraße 10;;8501;Lieboch;Lieboch;60629;1;Residential +25023083;FTTxCustomerLocation;Teichstraße 3;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023084;FTTxCustomerLocation;Teichstraße 8;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023085;FTTxCustomerLocation;Teichstraße 26;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023086;FTTxCustomerLocation;Teichstraße 26;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023087;FTTxCustomerLocation;Radlpass Straße 32;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023088;FTTxCustomerLocation;Klöpfergasse 8;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023089;FTTxCustomerLocation;Klöpfergasse 5;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023090;FTTxCustomerLocation;Teichstraße 9;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023091;FTTxCustomerLocation;Radlstraße 49;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023092;FTTxCustomerLocation;Radlstraße 49;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023093;FTTxCustomerLocation;Roseggergasse 53;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023094;FTTxCustomerLocation;Bienengasse 25;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023095;FTTxCustomerLocation;Bienengasse 35;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023096;FTTxCustomerLocation;Bienengasse 33;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023097;FTTxCustomerLocation;Erzherzog Johann-Straße 2;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023098;FTTxCustomerLocation;Bienengasse 40;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023099;FTTxCustomerLocation;Ahorngasse 4;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023100;FTTxCustomerLocation;Bahnhofstraße 75b;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023101;FTTxCustomerLocation;Bahnhofstraße 75;;8501;Lieboch;Lieboch;60629;1;Residential +25023102;FTTxCustomerLocation;Bahnhofstraße 69;;8501;Lieboch;Lieboch;60629;1;Residential +25023103;FTTxCustomerLocation;Kernstockgasse 8;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023104;FTTxCustomerLocation;Kernstockgasse 8;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023105;FTTxCustomerLocation;Bahnhofstraße 73;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023106;FTTxCustomerLocation;Kernstockgasse 4;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023107;FTTxCustomerLocation;Kernstockgasse 24;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023108;FTTxCustomerLocation;Kernstockgasse 24;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023109;FTTxCustomerLocation;Kernstockgasse 20;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023110;FTTxCustomerLocation;Elisabethstraße 32;;8501;Lieboch;Lieboch;60629;1;Residential +25023111;FTTxCustomerLocation;Elisabethstraße 26;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023112;FTTxCustomerLocation;Strauchweg 14;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023113;FTTxCustomerLocation;Hofgasse 2;;8501;Lieboch;Lieboch;60629;5;Greenfield +25023114;FTTxCustomerLocation;;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023115;FTTxCustomerLocation;Packerstraße 59;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023116;FTTxCustomerLocation;Rupert-Schmid-Platz 2;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023117;FTTxCustomerLocation;Flurgasse 9;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023118;FTTxCustomerLocation;Badeggerweg 9;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023119;FTTxCustomerLocation;Badeggerweg 9;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023120;FTTxCustomerLocation;Badeggerweg 12;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023121;FTTxCustomerLocation;Badeggerweg 12;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023122;FTTxCustomerLocation;Fasangasse 6;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023123;FTTxCustomerLocation;Fasangasse 6;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023124;FTTxCustomerLocation;Fasangasse 10;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023125;FTTxCustomerLocation;Fasangasse 10;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023126;FTTxCustomerLocation;Fasangasse 10;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023127;FTTxCustomerLocation;Fasangasse 10;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023128;FTTxCustomerLocation;Fasangasse 10;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023129;FTTxCustomerLocation;Fasangasse 10;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023130;FTTxCustomerLocation;Fasangasse 6;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023131;FTTxCustomerLocation;Fasangasse 7;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023132;FTTxCustomerLocation;Fasangasse 6;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023133;FTTxCustomerLocation;Fasangasse 4;;8501;Lieboch;Lieboch;60629;4;Greenfield +25023134;FTTxCustomerLocation;Badeggerweg 1;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023135;FTTxCustomerLocation;Hitzendorferstraße 74;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023136;FTTxCustomerLocation;Hitzendorferstraße 55;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023137;FTTxCustomerLocation;Forellenweg 3;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023138;FTTxCustomerLocation;Forellenweg 6;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023139;FTTxCustomerLocation;Forellenweg 6;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023140;FTTxCustomerLocation;Rebhuhnweg 3;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023141;FTTxCustomerLocation;Grünegasse 4;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023142;FTTxCustomerLocation;Grünegasse 7;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023143;FTTxCustomerLocation;Höhenweg 16;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023144;FTTxCustomerLocation;Höhenweg 12;;8501;Lieboch;Lieboch;60629;2;Greenfield +25023145;FTTxCustomerLocation;Höhenweg 23;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023146;FTTxCustomerLocation;Ulmgasse 13;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023147;FTTxCustomerLocation;Ulmgasse 14;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023148;FTTxCustomerLocation;Ulmgasse 25;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023149;FTTxCustomerLocation;Ulmgasse 25;;8501;Lieboch;Lieboch;60629;4;Greenfield +25023150;FTTxCustomerLocation;Hitzendorferstraße 12;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023151;FTTxCustomerLocation;Rupert-Schmid-Platz 5;;8501;Lieboch;Lieboch;60629;12;Greenfield +25023152;FTTxCustomerLocation;Packerstraße 98;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023153;FTTxCustomerLocation;Packerstraße 76;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023154;FTTxCustomerLocation;Packerstraße 76;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023155;FTTxCustomerLocation;Lindengasse 29;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023156;FTTxCustomerLocation;Lindengasse 27;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023157;FTTxCustomerLocation;Packerstraße 76;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023158;FTTxCustomerLocation;Bergstraße 5;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023159;FTTxCustomerLocation;Lindengasse 6b;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023160;FTTxCustomerLocation;Siedlungsstraße 22;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023161;FTTxCustomerLocation;Siedlungsstraße 19;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023162;FTTxCustomerLocation;Rehweg 19;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023163;FTTxCustomerLocation;Rehweg 19;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023164;FTTxCustomerLocation;Rehweg 19;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023165;FTTxCustomerLocation;Laubweg 9;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023166;FTTxCustomerLocation;Laubweg 9;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023167;FTTxCustomerLocation;Packer Straße 12;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023170;FTTxCustomerLocation;Packerstraße 62;;8501;Lieboch;Lieboch;60629;6;Greenfield +25023171;FTTxCustomerLocation;Hans-Thalhammer-Straße 1;;8501;Lieboch;Lieboch;60629;3;Transmitting station +25023172;FTTxCustomerLocation;Strauchweg 6a;;8501;Lieboch;Lieboch;60629;3;Transmitting station +25023174;FTTxCustomerLocation;Kleegasse 6;;8501;Lieboch;Lieboch;60629;3;Transmitting station +25023175;FTTxCustomerLocation;Packerstraße 137;;8501;Lieboch;Lieboch;60629;3;Transmitting station +25023176;FTTxCustomerLocation;B 219;;8501;Lieboch;Lieboch;60629;3;Transmitting station +25023177;FTTxCustomerLocation;Packer Straße 12;;8501;Lieboch;Lieboch;60629;3;Transmitting station +25023178;FTTxCustomerLocation;Erlengasse 9;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023179;FTTxCustomerLocation;Grünegasse 14;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023180;FTTxCustomerLocation;Grünegasse 12;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023181;FTTxCustomerLocation;Grünegasse 12;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023182;FTTxCustomerLocation;Grünegasse 8;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023183;FTTxCustomerLocation;Grünegasse 6;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023184;FTTxCustomerLocation;Grünegasse 2;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023185;FTTxCustomerLocation;Ulmgasse 12;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023186;FTTxCustomerLocation;Ulmgasse 14;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023187;FTTxCustomerLocation;Fasangasse 11;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023188;FTTxCustomerLocation;Rebhuhnweg 7a;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023189;FTTxCustomerLocation;Rebhuhnweg 7a;;8501;Lieboch;Lieboch;60629;1;Greenfield +25023190;FTTxCustomerLocation;Fasangasse 4;;8501;Lieboch;Lieboch;60629;4;Greenfield +25023191;FTTxCustomerLocation;Fasangasse 4;;8501;Lieboch;Lieboch;60629;4;Greenfield +25023192;FTTxCustomerLocation;Fasangasse 4;;8501;Lieboch;Lieboch;60629;4;Greenfield +25023193;FTTxCustomerLocation;Packer Straße 4;;8144;Lieboch;Lieboch;60629;1;Residential +25023194;FTTxCustomerLocation;Packerstraße 72;;8501;Lieboch;Lieboch;60629;10;Greenfield +25023195;FTTxCustomerLocation;Packerstraße 72;;8501;Lieboch;Lieboch;60629;10;Greenfield +25023196;FTTxCustomerLocation;Lindengasse 14;;8501;Lieboch;Lieboch;60629;9;Greenfield +25024740;FTTxCustomerLocation;Am Gries 2;2069;8501;Lieboch;Lieboch;60629;1;Residential +25024741;FTTxCustomerLocation;Am Gries 4;2068;8501;Lieboch;Lieboch;60629;1;Residential +25024742;FTTxCustomerLocation;Am Gries 6;2071;8501;Lieboch;Lieboch;60629;1;Residential +25024743;FTTxCustomerLocation;Am Gries 8;2072;8501;Lieboch;Lieboch;60629;3;Multiple dwellings +25024744;FTTxCustomerLocation;Am Gries 10;2077;8501;Lieboch;Lieboch;60629;1;Residential +25024745;FTTxCustomerLocation;Am Gries 11;0.868;8501;Lieboch;Lieboch;60629;1;Residential +25024746;FTTxCustomerLocation;Am Gries 12;2076;8501;Lieboch;Lieboch;60629;1;Residential +25024747;FTTxCustomerLocation;Am Gries 14;2075;8501;Lieboch;Lieboch;60629;1;Multiple dwellings +25024748;FTTxCustomerLocation;Am Mühlbach 2;.408/1;8501;Lieboch;Lieboch;60629;1;Residential +25024749;FTTxCustomerLocation;Am Mühlbach 2a;.408/2;8501;Lieboch;Lieboch;60629;1;Residential +25024750;FTTxCustomerLocation;Am Mühlbach 4;1104;8501;Lieboch;Lieboch;60629;4;Company +25024751;FTTxCustomerLocation;Am Mühlbach 4a;1104;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024752;FTTxCustomerLocation;Am Mühlbach 5;1126/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024753;FTTxCustomerLocation;Am Mühlbach 6;0.749;8501;Lieboch;Lieboch;60629;3;Multiple dwellings +25024754;FTTxCustomerLocation;Am Mühlbach 8;0.407;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024755;FTTxCustomerLocation;Am Mühlbach 10;1122;8501;Lieboch;Lieboch;60629;1;Residential +25024756;FTTxCustomerLocation;Am Mühlbach 12;1131;8501;Lieboch;Lieboch;60629;13;Multiple dwellings +25024757;FTTxCustomerLocation;Am Mühlbach 14;0.891;8501;Lieboch;Lieboch;60629;5;Multiple dwellings +25024758;FTTxCustomerLocation;Am Mühlbach 16;0.891;8501;Lieboch;Lieboch;60629;7;Multiple dwellings +25024759;FTTxCustomerLocation;Am Mühlbach 18;1143/1;8501;Lieboch;Lieboch;60629;3;Multiple dwellings +25024760;FTTxCustomerLocation;Am Mühlbach 20;1143/1;8501;Lieboch;Lieboch;60629;15;Multiple dwellings +25024761;FTTxCustomerLocation;Am Mühlbach 22;1150/4;8501;Lieboch;Lieboch;60629;10;Multiple dwellings +25024762;FTTxCustomerLocation;Am Mühlbach 24;1150/5;8501;Lieboch;Lieboch;60629;8;Multiple dwellings +25024763;FTTxCustomerLocation;Am Weiher 4;.69/1;8501;Lieboch;Lieboch;60629;1;Residential +25024764;FTTxCustomerLocation;Am Weiher 6;0.68;8501;Lieboch;Lieboch;60629;1;Residential +25024765;FTTxCustomerLocation;Am Weiher 10;.66/1;8501;Lieboch;Lieboch;60629;1;Residential +25024766;FTTxCustomerLocation;Am Weiher 14;0.64;8501;Lieboch;Lieboch;60629;1;Residential +25024767;FTTxCustomerLocation;Am Weiher 16;0.63;8501;Lieboch;Lieboch;60629;1;Residential +25024768;FTTxCustomerLocation;Am Weiher 20;0.184;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024769;FTTxCustomerLocation;Augasse 8;0.7;8501;Lieboch;Lieboch;60629;1;Residential +25024770;FTTxCustomerLocation;Augasse 9;1474/21;8501;Lieboch;Lieboch;60629;1;Residential +25024771;FTTxCustomerLocation;Augasse 10;0.701;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024772;FTTxCustomerLocation;Bachfeldgasse 3;0.428;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024773;FTTxCustomerLocation;Bachfeldgasse 5;1361/1;8501;Lieboch;Lieboch;60629;1;Residential +25024774;FTTxCustomerLocation;Bachfeldgasse 13;1353/4;8501;Lieboch;Lieboch;60629;1;Residential +25024775;FTTxCustomerLocation;Bachfeldgasse 15;0.69;8501;Lieboch;Lieboch;60629;1;Residential +25024776;FTTxCustomerLocation;Bachfeldgasse 20;1341/3;8501;Lieboch;Lieboch;60629;1;Residential +25024777;FTTxCustomerLocation;Bachfeldgasse 21;1341/4;8501;Lieboch;Lieboch;60629;1;Residential +25024778;FTTxCustomerLocation;Bachfeldgasse 23;0.687;8501;Lieboch;Lieboch;60629;1;Residential +25024779;FTTxCustomerLocation;Bachfeldgasse 26;1333/2;8501;Lieboch;Lieboch;60629;1;Residential +25024780;FTTxCustomerLocation;Bachfeldgasse 28;1334/7;8501;Lieboch;Lieboch;60629;1;Residential +25024781;FTTxCustomerLocation;Bachfeldgasse 31;1328/6;8501;Lieboch;Lieboch;60629;1;Residential +25024782;FTTxCustomerLocation;Bachfeldgasse 31a;1328/4;8501;Lieboch;Lieboch;60629;1;Residential +25024783;FTTxCustomerLocation;Bachfeldgasse 35;0.196;8501;Lieboch;Lieboch;60629;1;Residential +25024784;FTTxCustomerLocation;Bachfeldgasse 41;1296/1;8501;Lieboch;Lieboch;60629;1;Residential +25024785;FTTxCustomerLocation;Bachfeldgasse 42;1304/1;8501;Lieboch;Lieboch;60629;1;Residential +25024786;FTTxCustomerLocation;Bachfeldgasse 49;493/15;8501;Lieboch;Lieboch;60629;1;Residential +25024787;FTTxCustomerLocation;Bachfeldgasse 51;493/13;8501;Lieboch;Lieboch;60629;1;Residential +25024788;FTTxCustomerLocation;Bahnhofstraße 4;0.158;8501;Lieboch;Lieboch;60629;1;Residential +25024789;FTTxCustomerLocation;Bahnhofstraße 6;0.159;8501;Lieboch;Lieboch;60629;2;Company +25024790;FTTxCustomerLocation;Bahnhofstraße 20;0.162;8501;Lieboch;Lieboch;60629;1;Company +25024791;FTTxCustomerLocation;Bahnhofstraße 34;0.164;8501;Lieboch;Lieboch;60629;1;Residential +25024792;FTTxCustomerLocation;Bergstraße 5;.736/1;8501;Lieboch;Lieboch;60629;1;Residential +25024793;FTTxCustomerLocation;Bergstraße 6;0.157;8501;Lieboch;Lieboch;60629;1;Residential +25024794;FTTxCustomerLocation;Bergstraße 10;0.512;8501;Lieboch;Lieboch;60629;1;Residential +25024795;FTTxCustomerLocation;Bergstraße 12;0.5;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024796;FTTxCustomerLocation;Bergstraße 14;0.502;8501;Lieboch;Lieboch;60629;1;Residential +25024797;FTTxCustomerLocation;Bergstraße 15;0.498;8501;Lieboch;Lieboch;60629;1;Residential +25024798;FTTxCustomerLocation;Bergstraße 16;0.559;8501;Lieboch;Lieboch;60629;1;Residential +25024799;FTTxCustomerLocation;Bergstraße 17;0.497;8501;Lieboch;Lieboch;60629;1;Residential +25024800;FTTxCustomerLocation;Bergstraße 18;0.496;8501;Lieboch;Lieboch;60629;1;Residential +25024801;FTTxCustomerLocation;Bergstraße 19;0.735;8501;Lieboch;Lieboch;60629;1;Residential +25024802;FTTxCustomerLocation;Bergstraße 20;0.548;8501;Lieboch;Lieboch;60629;1;Residential +25024803;FTTxCustomerLocation;Bergstraße 21;0.495;8501;Lieboch;Lieboch;60629;1;Residential +25024804;FTTxCustomerLocation;Bergstraße 22;0.549;8501;Lieboch;Lieboch;60629;1;Residential +25024805;FTTxCustomerLocation;Bergstraße 23;0.494;8501;Lieboch;Lieboch;60629;1;Residential +25024806;FTTxCustomerLocation;Bergstraße 23;0.494;8501;Lieboch;Lieboch;60629;1;Company +25024807;FTTxCustomerLocation;Bergstraße 25;0.547;8501;Lieboch;Lieboch;60629;1;Residential +25024808;FTTxCustomerLocation;Blumengasse 3;2034;8501;Lieboch;Lieboch;60629;2;Residential +25024809;FTTxCustomerLocation;Blumengasse 3;2034;8501;Lieboch;Lieboch;60629;1;Residential +25024810;FTTxCustomerLocation;Blumengasse 4;2038;8501;Lieboch;Lieboch;60629;1;Residential +25024811;FTTxCustomerLocation;Blumengasse 6;2040;8501;Lieboch;Lieboch;60629;1;Residential +25024812;FTTxCustomerLocation;Blumengasse 7;2032;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024813;FTTxCustomerLocation;Blumengasse 8;2043;8501;Lieboch;Lieboch;60629;1;Residential +25024814;FTTxCustomerLocation;Blumengasse 10;2044;8501;Lieboch;Lieboch;60629;1;Residential +25024815;FTTxCustomerLocation;Blumengasse 11;2031;8501;Lieboch;Lieboch;60629;1;Residential +25024816;FTTxCustomerLocation;Blumengasse 12;2042;8501;Lieboch;Lieboch;60629;1;Residential +25024817;FTTxCustomerLocation;Blumengasse 12a;2042;8501;Lieboch;Lieboch;60629;1;Residential +25024818;FTTxCustomerLocation;Blumengasse 13;2028;8501;Lieboch;Lieboch;60629;1;Residential +25024819;FTTxCustomerLocation;Blumengasse 14;2045/1;8501;Lieboch;Lieboch;60629;1;Residential +25024820;FTTxCustomerLocation;Blumengasse 15;2027;8501;Lieboch;Lieboch;60629;1;Residential +25024821;FTTxCustomerLocation;Blumengasse 16;2046;8501;Lieboch;Lieboch;60629;1;Residential +25024822;FTTxCustomerLocation;Blumengasse 17;2026/2;8501;Lieboch;Lieboch;60629;1;Residential +25024823;FTTxCustomerLocation;Blumengasse 17a;2026/1;8501;Lieboch;Lieboch;60629;1;Residential +25024824;FTTxCustomerLocation;Blumengasse 18;2047;8501;Lieboch;Lieboch;60629;1;Residential +25024825;FTTxCustomerLocation;Blumengasse 20;2048;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024826;FTTxCustomerLocation;Blumengasse 21;2050;8501;Lieboch;Lieboch;60629;1;Residential +25024827;FTTxCustomerLocation;Blumengasse 22;2049;8501;Lieboch;Lieboch;60629;1;Residential +25024828;FTTxCustomerLocation;Blumengasse 24;2049;8501;Lieboch;Lieboch;60629;1;Residential +25024829;FTTxCustomerLocation;Dammstraße 2;0.246;8501;Lieboch;Lieboch;60629;1;Residential +25024830;FTTxCustomerLocation;Dorfstraße 1;.72/2;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25024831;FTTxCustomerLocation;Dorfstraße 3;.72/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024832;FTTxCustomerLocation;Dorfstraße 4;1199/2;8501;Lieboch;Lieboch;60629;1;Residential +25024833;FTTxCustomerLocation;Dorfstraße 5;2243;8501;Lieboch;Lieboch;60629;1;Residential +25024834;FTTxCustomerLocation;Dorfstraße 6;1199/5;8501;Lieboch;Lieboch;60629;1;Company +25024835;FTTxCustomerLocation;Dorfstraße 7;0.766;8501;Lieboch;Lieboch;60629;1;Company +25024836;FTTxCustomerLocation;Dorfstraße 8;.91/2;8501;Lieboch;Lieboch;60629;1;Residential +25024837;FTTxCustomerLocation;Dorfstraße 8a;.91/2;8501;Lieboch;Lieboch;60629;1;Residential +25024838;FTTxCustomerLocation;Dorfstraße 9;0.521;8501;Lieboch;Lieboch;60629;1;Company +25024839;FTTxCustomerLocation;Dorfstraße 11;.70/1;8501;Lieboch;Lieboch;60629;2;Residential +25024840;FTTxCustomerLocation;Dorfstraße 12;0.92;8501;Lieboch;Lieboch;60629;1;Residential +25024841;FTTxCustomerLocation;Dorfstraße 13;.70/2;8501;Lieboch;Lieboch;60629;1;Multiple dwellings +25024842;FTTxCustomerLocation;Dorfstraße 16;.95/1;8501;Lieboch;Lieboch;60629;1;Residential +25024843;FTTxCustomerLocation;Dorfstraße 18;.95/2;8501;Lieboch;Lieboch;60629;1;Residential +25024844;FTTxCustomerLocation;Dorfstraße 20;1221/5;8501;Lieboch;Lieboch;60629;1;Residential +25024845;FTTxCustomerLocation;Dorfstraße 21;0.769;8501;Lieboch;Lieboch;60629;1;Residential +25024846;FTTxCustomerLocation;Dorfstraße 22;1221/2;8501;Lieboch;Lieboch;60629;1;Residential +25024847;FTTxCustomerLocation;Dorfstraße 23;1821/27;8501;Lieboch;Lieboch;60629;1;Residential +25024848;FTTxCustomerLocation;Dorfstraße 24;1221/3;8501;Lieboch;Lieboch;60629;1;Residential +25024849;FTTxCustomerLocation;Dorfstraße 24a;1221/9;8501;Lieboch;Lieboch;60629;1;Residential +25024850;FTTxCustomerLocation;Dorfstraße 25;1224/2;8501;Lieboch;Lieboch;60629;1;Residential +25024851;FTTxCustomerLocation;Dorfstraße 26;.100/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024852;FTTxCustomerLocation;Dorfstraße 28;1225/1;8501;Lieboch;Lieboch;60629;1;Residential +25024853;FTTxCustomerLocation;Dorfstraße 29;0.711;8501;Lieboch;Lieboch;60629;1;Residential +25024854;FTTxCustomerLocation;Dorfstraße 31;1231/3;8501;Lieboch;Lieboch;60629;1;Residential +25024855;FTTxCustomerLocation;Dorfstraße 32;1228/2;8501;Lieboch;Lieboch;60629;1;Residential +25024856;FTTxCustomerLocation;Dorfstraße 33;0.574;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024857;FTTxCustomerLocation;Dorfstraße 35;0.209;8501;Lieboch;Lieboch;60629;1;Residential +25024858;FTTxCustomerLocation;Einödstraße 4;0.778;8501;Lieboch;Lieboch;60629;1;Residential +25024859;FTTxCustomerLocation;Einödstraße 7;0.313;8501;Lieboch;Lieboch;60629;1;Residential +25024860;FTTxCustomerLocation;Einödstraße 8;.576/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024861;FTTxCustomerLocation;Einödstraße 9;1046/6;8501;Lieboch;Lieboch;60629;1;Residential +25024862;FTTxCustomerLocation;Einödstraße 10;0.268;8501;Lieboch;Lieboch;60629;1;Residential +25024863;FTTxCustomerLocation;Einödstraße 11;0.779;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024864;FTTxCustomerLocation;Einödstraße 13;0.78;8501;Lieboch;Lieboch;60629;1;Residential +25024865;FTTxCustomerLocation;Einödstraße 14;0.613;8501;Lieboch;Lieboch;60629;1;Residential +25024866;FTTxCustomerLocation;Einödstraße 15;0.251;8501;Lieboch;Lieboch;60629;1;Residential +25024867;FTTxCustomerLocation;Einödstraße 16;0.777;8501;Lieboch;Lieboch;60629;1;Residential +25024868;FTTxCustomerLocation;Einödstraße 20;923/4;8501;Lieboch;Lieboch;60629;1;Residential +25024869;FTTxCustomerLocation;Einödstraße 21;0.129;8501;Lieboch;Lieboch;60629;1;Residential +25024870;FTTxCustomerLocation;Einödstraße 23;0.612;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024871;FTTxCustomerLocation;Einödstraße 25;1024/3;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024872;FTTxCustomerLocation;Einödstraße 27;0.187;8501;Lieboch;Lieboch;60629;1;Residential +25024873;FTTxCustomerLocation;Einödstraße 29;2249;8501;Lieboch;Lieboch;60629;1;Residential +25024874;FTTxCustomerLocation;Einödstraße 53;.128/1;8501;Lieboch;Lieboch;60629;1;Residential +25024876;FTTxCustomerLocation;Erlengasse 7;0.744;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024877;FTTxCustomerLocation;Erlengasse 9;0.535;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024878;FTTxCustomerLocation;Erlengasse 11;1129;8501;Lieboch;Lieboch;60629;1;Residential +25024879;FTTxCustomerLocation;Fasangasse 1;.696/2;8501;Lieboch;Lieboch;60629;1;Residential +25024880;FTTxCustomerLocation;Fasangasse 3;.696/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024881;FTTxCustomerLocation;Fasangasse 4;0.695;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024882;FTTxCustomerLocation;Fasangasse 5;0.697;8501;Lieboch;Lieboch;60629;1;Residential +25024883;FTTxCustomerLocation;Fasangasse 6;1474/15;8501;Lieboch;Lieboch;60629;1;Residential +25024884;FTTxCustomerLocation;Fasangasse 7;0.698;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024885;FTTxCustomerLocation;Fasangasse 9;1474/24;8501;Lieboch;Lieboch;60629;1;Residential +25024886;FTTxCustomerLocation;Fasangasse 10;1474/23;8501;Lieboch;Lieboch;60629;1;Residential +25024887;FTTxCustomerLocation;Fasangasse 12;1474/25;8501;Lieboch;Lieboch;60629;1;Residential +25024888;FTTxCustomerLocation;Feldriegelstraße 6;.105/3;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024889;FTTxCustomerLocation;Feldriegelstraße 7;0.284;8501;Lieboch;Lieboch;60629;1;Residential +25024890;FTTxCustomerLocation;Feldriegelstraße 9;1238/6;8501;Lieboch;Lieboch;60629;1;Residential +25024891;FTTxCustomerLocation;Feldriegelstraße 10;0.109;8501;Lieboch;Lieboch;60629;1;Residential +25024892;FTTxCustomerLocation;Feldriegelstraße 11;1238/1;8501;Lieboch;Lieboch;60629;1;Residential +25024893;FTTxCustomerLocation;Feldriegelstraße 12;1235/2;8501;Lieboch;Lieboch;60629;1;Residential +25024894;FTTxCustomerLocation;Feldriegelstraße 14;0.191;8501;Lieboch;Lieboch;60629;1;Residential +25024895;FTTxCustomerLocation;Feldriegelstraße 15;1239/4;8501;Lieboch;Lieboch;60629;1;Residential +25024896;FTTxCustomerLocation;Feldriegelstraße 17;1239/6;8501;Lieboch;Lieboch;60629;1;Residential +25024897;FTTxCustomerLocation;Feldriegelstraße 18;0.71;8501;Lieboch;Lieboch;60629;1;Residential +25024898;FTTxCustomerLocation;Feldriegelstraße 19;0.397;8501;Lieboch;Lieboch;60629;1;Residential +25024899;FTTxCustomerLocation;Feldriegelstraße 20;1366/1;8501;Lieboch;Lieboch;60629;3;Multiple dwellings +25024900;FTTxCustomerLocation;Feldriegelstraße 23;0.568;8501;Lieboch;Lieboch;60629;1;Residential +25024901;FTTxCustomerLocation;Feldriegelstraße 25;1267/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024902;FTTxCustomerLocation;Feldriegelstraße 25a;1267/4;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024903;FTTxCustomerLocation;Feldriegelstraße 25b;1267/3;8501;Lieboch;Lieboch;60629;1;Residential +25024904;FTTxCustomerLocation;Feldriegelstraße 27;0.772;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024905;FTTxCustomerLocation;Feldriegelstraße 29;1269/6;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024906;FTTxCustomerLocation;Feldriegelstraße 33;1271;8501;Lieboch;Lieboch;60629;1;Residential +25024907;FTTxCustomerLocation;Feldriegelstraße 34;0.682;8501;Lieboch;Lieboch;60629;1;Residential +25024908;FTTxCustomerLocation;Feldriegelstraße 36;0.4;8501;Lieboch;Lieboch;60629;1;Residential +25024909;FTTxCustomerLocation;Feldriegelstraße 38;0.523;8501;Lieboch;Lieboch;60629;1;Residential +25024910;FTTxCustomerLocation;Feldriegelstraße 40;0.681;8501;Lieboch;Lieboch;60629;1;Residential +25024911;FTTxCustomerLocation;Feldriegelstraße 42;0.542;8501;Lieboch;Lieboch;60629;1;Residential +25024912;FTTxCustomerLocation;Feldriegelstraße 44;0.68;8501;Lieboch;Lieboch;60629;1;Residential +25024913;FTTxCustomerLocation;Feldriegelstraße 45;0.429;8501;Lieboch;Lieboch;60629;1;Residential +25024914;FTTxCustomerLocation;Feldriegelstraße 48;1333/1;8501;Lieboch;Lieboch;60629;1;Residential +25024915;FTTxCustomerLocation;Feldriegelstraße 48a;1333/3;8501;Lieboch;Lieboch;60629;1;Residential +25024916;FTTxCustomerLocation;Feldriegelstraße 50;1326/3;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024917;FTTxCustomerLocation;Feldriegelstraße 57;1289/5;8501;Lieboch;Lieboch;60629;1;Residential +25024918;FTTxCustomerLocation;Feldriegelstraße 58;.56/1;8501;Lieboch;Lieboch;60629;1;Residential +25024919;FTTxCustomerLocation;Feldriegelstraße 59;1289/6;8501;Lieboch;Lieboch;60629;1;Residential +25024920;FTTxCustomerLocation;Feldriegelstraße 65;501/2;8501;Lieboch;Lieboch;60629;1;Residential +25024921;FTTxCustomerLocation;Feldstraße 1;0.882;8501;Lieboch;Lieboch;60629;1;Multiple dwellings +25024922;FTTxCustomerLocation;Feldstraße 2;0.873;8501;Lieboch;Lieboch;60629;1;Residential +25024923;FTTxCustomerLocation;Feldstraße 4;2111/2;8501;Lieboch;Lieboch;60629;1;Residential +25024924;FTTxCustomerLocation;Feldstraße 8;0.875;8501;Lieboch;Lieboch;60629;1;Residential +25024925;FTTxCustomerLocation;Feldstraße 10;0.876;8501;Lieboch;Lieboch;60629;1;Residential +25024926;FTTxCustomerLocation;Feldstraße 12;2114;8501;Lieboch;Lieboch;60629;1;Residential +25024927;FTTxCustomerLocation;Feldstraße 18;2133;8501;Lieboch;Lieboch;60629;1;Residential +25024928;FTTxCustomerLocation;Feldstraße 20;0.877;8501;Lieboch;Lieboch;60629;1;Residential +25024929;FTTxCustomerLocation;Feldstraße 22;.880/1;8501;Lieboch;Lieboch;60629;1;Residential +25024930;FTTxCustomerLocation;Feldstraße 24;0.881;8501;Lieboch;Lieboch;60629;1;Residential +25024931;FTTxCustomerLocation;Feldstraße 40;0.155;8501;Lieboch;Lieboch;60629;1;Residential +25024932;FTTxCustomerLocation;Flurgasse 3;0.76;8501;Lieboch;Lieboch;60629;1;Residential +25024933;FTTxCustomerLocation;Flurgasse 4a;880/4;8501;Lieboch;Lieboch;60629;7;Multiple dwellings +25024934;FTTxCustomerLocation;Flurgasse 4b;880/4;8501;Lieboch;Lieboch;60629;7;Multiple dwellings +25024935;FTTxCustomerLocation;Flurgasse 4c;880/4;8501;Lieboch;Lieboch;60629;7;Multiple dwellings +25024936;FTTxCustomerLocation;Flurgasse 5;887/1;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25024937;FTTxCustomerLocation;Flurgasse 6;0.378;8501;Lieboch;Lieboch;60629;1;Residential +25024938;FTTxCustomerLocation;Flurgasse 7;887/2;8501;Lieboch;Lieboch;60629;1;Residential +25024939;FTTxCustomerLocation;Flurgasse 8;0.378;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024940;FTTxCustomerLocation;Flurgasse 9;0.761;8501;Lieboch;Lieboch;60629;1;Residential +25024941;FTTxCustomerLocation;Flurgasse 14;0.416;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024942;FTTxCustomerLocation;Flurgasse 14a;2244;8501;Lieboch;Lieboch;60629;1;Residential +25024943;FTTxCustomerLocation;Flurgasse 16;0.415;8501;Lieboch;Lieboch;60629;1;Residential +25024944;FTTxCustomerLocation;Flurgasse 17;0.312;8501;Lieboch;Lieboch;60629;1;Residential +25024945;FTTxCustomerLocation;Flurgasse 18;0.414;8501;Lieboch;Lieboch;60629;1;Residential +25024946;FTTxCustomerLocation;Flurgasse 20;1919;8501;Lieboch;Lieboch;60629;1;Residential +25024947;FTTxCustomerLocation;Flurgasse 22;.577/1;8501;Lieboch;Lieboch;60629;1;Residential +25024948;FTTxCustomerLocation;Flurgasse 22a;.577/2;8501;Lieboch;Lieboch;60629;1;Residential +25024949;FTTxCustomerLocation;Flurgasse 30;.578/1;8501;Lieboch;Lieboch;60629;1;Residential +25024950;FTTxCustomerLocation;Hangweg 5;578/2;8501;Lieboch;Lieboch;60629;1;Residential +25024951;FTTxCustomerLocation;Hangweg 1;597;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024952;FTTxCustomerLocation;Hangweg 2;595/2;8501;Lieboch;Lieboch;60629;1;Residential +25024953;FTTxCustomerLocation;Hangweg 4;584/2;8501;Lieboch;Lieboch;60629;1;Residential +25024954;FTTxCustomerLocation;Hangweg 6;595/3;8501;Lieboch;Lieboch;60629;1;Residential +25024955;FTTxCustomerLocation;Hangweg 9;0.776;8501;Lieboch;Lieboch;60629;1;Residential +25024956;FTTxCustomerLocation;Heimgasse 2;0.398;8501;Lieboch;Lieboch;60629;1;Residential +25024957;FTTxCustomerLocation;Heimgasse 3;0.38;8501;Lieboch;Lieboch;60629;1;Residential +25024958;FTTxCustomerLocation;Heimgasse 4;1365/2;8501;Lieboch;Lieboch;60629;1;Residential +25024959;FTTxCustomerLocation;Heimgasse 5;0.575;8501;Lieboch;Lieboch;60629;1;Residential +25024960;FTTxCustomerLocation;Heimgasse 6;0.709;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024961;FTTxCustomerLocation;Heimgasse 7;0.708;8501;Lieboch;Lieboch;60629;1;Residential +25024962;FTTxCustomerLocation;Heimgasse 9;0.707;8501;Lieboch;Lieboch;60629;1;Residential +25024963;FTTxCustomerLocation;Hitzendorferstraße 1;.85/2;8501;Lieboch;Lieboch;60629;1;Residential +25024964;FTTxCustomerLocation;Hitzendorferstraße 2;1183;8501;Lieboch;Lieboch;60629;5;Public +25024965;FTTxCustomerLocation;Hitzendorferstraße 3;1180/3;8501;Lieboch;Lieboch;60629;1;Public +25024966;FTTxCustomerLocation;Hitzendorferstraße 6;0.758;8501;Lieboch;Lieboch;60629;1;Residential +25024967;FTTxCustomerLocation;Hitzendorferstraße 8;0.757;8501;Lieboch;Lieboch;60629;2;Company +25024968;FTTxCustomerLocation;Hitzendorferstraße 9;0.81;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024969;FTTxCustomerLocation;Hitzendorferstraße 10;0.205;8501;Lieboch;Lieboch;60629;1;Company +25024970;FTTxCustomerLocation;Hitzendorferstraße 10;0.205;8501;Lieboch;Lieboch;60629;1;Residential +25024971;FTTxCustomerLocation;Hitzendorferstraße 12;0.207;8501;Lieboch;Lieboch;60629;1;Residential +25024972;FTTxCustomerLocation;Hitzendorferstraße 20;.186/1;8501;Lieboch;Lieboch;60629;1;Residential +25024973;FTTxCustomerLocation;Hitzendorferstraße 23;0.406;8501;Lieboch;Lieboch;60629;1;Residential +25024974;FTTxCustomerLocation;Hitzendorferstraße 25;0.321;8501;Lieboch;Lieboch;60629;1;Residential +25024975;FTTxCustomerLocation;Hitzendorferstraße 27;0.702;8501;Lieboch;Lieboch;60629;1;Company +25024976;FTTxCustomerLocation;Hitzendorferstraße 27;0.702;8501;Lieboch;Lieboch;60629;1;Residential +25024977;FTTxCustomerLocation;Hitzendorferstraße 31;.379/1;8501;Lieboch;Lieboch;60629;1;Residential +25024978;FTTxCustomerLocation;Hitzendorferstraße 51;1474/6;8501;Lieboch;Lieboch;60629;1;Residential +25024979;FTTxCustomerLocation;Hitzendorferstraße 53;0.459;8501;Lieboch;Lieboch;60629;1;Residential +25024980;FTTxCustomerLocation;Hitzendorferstraße 55;0.699;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024981;FTTxCustomerLocation;Hitzendorferstraße 70;1585/12;8501;Lieboch;Lieboch;60629;1;Residential +25024982;FTTxCustomerLocation;Hochstraße 4;0.349;8501;Lieboch;Lieboch;60629;1;Company +25024983;FTTxCustomerLocation;Hochstraße 6;601;8501;Lieboch;Lieboch;60629;1;Residential +25024984;FTTxCustomerLocation;Hochstraße 8;0.449;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024985;FTTxCustomerLocation;Hochstraße 9;0.562;8501;Lieboch;Lieboch;60629;1;Residential +25024986;FTTxCustomerLocation;Hochstraße 10;566;8501;Lieboch;Lieboch;60629;1;Residential +25024987;FTTxCustomerLocation;Hochstraße 11;0.45;8501;Lieboch;Lieboch;60629;1;Residential +25024988;FTTxCustomerLocation;Hochstraße 13;0.654;8501;Lieboch;Lieboch;60629;1;Residential +25024989;FTTxCustomerLocation;Hochstraße 17;0.563;8501;Lieboch;Lieboch;60629;1;Residential +25024990;FTTxCustomerLocation;Hochstraße 19;0.653;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024991;FTTxCustomerLocation;Hochstraße 20;536;8501;Lieboch;Lieboch;60629;1;Residential +25024992;FTTxCustomerLocation;Hochstraße 21;0.514;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25024993;FTTxCustomerLocation;Hochstraße 28;439/9;8501;Lieboch;Lieboch;60629;1;Residential +25024994;FTTxCustomerLocation;Hochstraße 30;439/8;8501;Lieboch;Lieboch;60629;1;Residential +25024995;FTTxCustomerLocation;Hochstraße 31;0.172;8501;Lieboch;Lieboch;60629;1;Residential +25024996;FTTxCustomerLocation;Hochstraße 32;0.657;8501;Lieboch;Lieboch;60629;1;Residential +25024997;FTTxCustomerLocation;Hochstraße 33;418;8501;Lieboch;Lieboch;60629;1;Residential +25024998;FTTxCustomerLocation;Hochstraße 34;439/7;8501;Lieboch;Lieboch;60629;1;Residential +25024999;FTTxCustomerLocation;Hochstraße 35;419/3;8501;Lieboch;Lieboch;60629;1;Residential +25025000;FTTxCustomerLocation;Hochstraße 39;0.458;8501;Lieboch;Lieboch;60629;1;Residential +25025001;FTTxCustomerLocation;Hochstraße 40;0.43;8501;Lieboch;Lieboch;60629;1;Residential +25025002;FTTxCustomerLocation;Hochstraße 41;425;8501;Lieboch;Lieboch;60629;1;Residential +25025003;FTTxCustomerLocation;Hochstraße 42;444/14;8501;Lieboch;Lieboch;60629;1;Residential +25025004;FTTxCustomerLocation;Hochstraße 43;427/1;8501;Lieboch;Lieboch;60629;1;Residential +25025005;FTTxCustomerLocation;Hochstraße 44;0.648;8501;Lieboch;Lieboch;60629;1;Residential +25025006;FTTxCustomerLocation;Hochstraße 46;0.649;8501;Lieboch;Lieboch;60629;1;Residential +25025007;FTTxCustomerLocation;Hochstraße 47;0.425;8501;Lieboch;Lieboch;60629;1;Residential +25025008;FTTxCustomerLocation;Hochstraße 49;0.433;8501;Lieboch;Lieboch;60629;1;Residential +25025009;FTTxCustomerLocation;Hochstraße 50;0.516;8501;Lieboch;Lieboch;60629;1;Residential +25025010;FTTxCustomerLocation;Hochstraße 51;0.647;8501;Lieboch;Lieboch;60629;1;Residential +25025011;FTTxCustomerLocation;Hochstraße 52;0.517;8501;Lieboch;Lieboch;60629;1;Residential +25025012;FTTxCustomerLocation;Hochstraße 53;0.645;8501;Lieboch;Lieboch;60629;1;Residential +25025013;FTTxCustomerLocation;Hochstraße 55;0.431;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025014;FTTxCustomerLocation;Hochstraße 57;0.644;8501;Lieboch;Lieboch;60629;1;Residential +25025015;FTTxCustomerLocation;Hochstraße 61;0.518;8501;Lieboch;Lieboch;60629;1;Residential +25025016;FTTxCustomerLocation;Hochstraße 63;0.643;8501;Lieboch;Lieboch;60629;1;Residential +25025017;FTTxCustomerLocation;Hochstraße 63a;0.643;8501;Lieboch;Lieboch;60629;1;Residential +25025018;FTTxCustomerLocation;Hochstraße 67;0.635;8501;Lieboch;Lieboch;60629;1;Residential +25025019;FTTxCustomerLocation;Höhenweg 1;.114/1;8501;Lieboch;Lieboch;60629;1;Residential +25025020;FTTxCustomerLocation;Höhenweg 3;1508/1;8501;Lieboch;Lieboch;60629;1;Residential +25025021;FTTxCustomerLocation;Höhenweg 4;0.74;8501;Lieboch;Lieboch;60629;1;Residential +25025022;FTTxCustomerLocation;Höhenweg 7;.556/1;8501;Lieboch;Lieboch;60629;1;Residential +25025023;FTTxCustomerLocation;Höhenweg 8;0.739;8501;Lieboch;Lieboch;60629;1;Residential +25025024;FTTxCustomerLocation;Höhenweg 9;1510/2;8501;Lieboch;Lieboch;60629;1;Residential +25025025;FTTxCustomerLocation;Höhenweg 10;0.738;8501;Lieboch;Lieboch;60629;1;Residential +25025026;FTTxCustomerLocation;Höhenweg 11;1510/1;8501;Lieboch;Lieboch;60629;1;Residential +25025027;FTTxCustomerLocation;Höhenweg 12;1516/1;8501;Lieboch;Lieboch;60629;1;Residential +25025028;FTTxCustomerLocation;Höhenweg 17;1513/19;8501;Lieboch;Lieboch;60629;1;Residential +25025029;FTTxCustomerLocation;Höhenweg 19;1513/13;8501;Lieboch;Lieboch;60629;1;Residential +25025030;FTTxCustomerLocation;Höhenweg 20;1513/14;8501;Lieboch;Lieboch;60629;1;Residential +25025031;FTTxCustomerLocation;Höhenweg 20a;1513/16;8501;Lieboch;Lieboch;60629;1;Residential +25025032;FTTxCustomerLocation;Höhenweg 20b;1513/17;8501;Lieboch;Lieboch;60629;1;Residential +25025033;FTTxCustomerLocation;Höhenweg 20c;1513/18;8501;Lieboch;Lieboch;60629;1;Residential +25025034;FTTxCustomerLocation;Höhenweg 20d;1513/15;8501;Lieboch;Lieboch;60629;1;Residential +25025035;FTTxCustomerLocation;Höhenweg 21;1513/12;8501;Lieboch;Lieboch;60629;1;Residential +25025036;FTTxCustomerLocation;Höhenweg 22;1501/4;8501;Lieboch;Lieboch;60629;1;Residential +25025037;FTTxCustomerLocation;Höhenweg 23;1513/12;8501;Lieboch;Lieboch;60629;1;Residential +25025038;FTTxCustomerLocation;Höhenweg 24;0.55;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025039;FTTxCustomerLocation;Höhenweg 26;0.734;8501;Lieboch;Lieboch;60629;1;Residential +25025040;FTTxCustomerLocation;Höhenweg 28;.733/1;8501;Lieboch;Lieboch;60629;1;Residential +25025041;FTTxCustomerLocation;Höhenweg 32;1512;8501;Lieboch;Lieboch;60629;1;Residential +25025045;FTTxCustomerLocation;Hügelweg 8;1308;8501;Lieboch;Lieboch;60629;1;Residential +25025046;FTTxCustomerLocation;Hügelweg 9;1297/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025047;FTTxCustomerLocation;Hügelweg 11;1297/4;8501;Lieboch;Lieboch;60629;1;Residential +25025048;FTTxCustomerLocation;Hügelweg 15;0.58;8501;Lieboch;Lieboch;60629;1;Residential +25025049;FTTxCustomerLocation;Jägerweg 3a;439/2;8501;Lieboch;Lieboch;60629;1;Residential +25025050;FTTxCustomerLocation;Jägerweg 1;439/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025051;FTTxCustomerLocation;Jägerweg 2;537;8501;Lieboch;Lieboch;60629;1;Residential +25025052;FTTxCustomerLocation;Jägerweg 3;0.658;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025053;FTTxCustomerLocation;Jägerweg 5;0.659;8501;Lieboch;Lieboch;60629;1;Residential +25025054;FTTxCustomerLocation;Jägerweg 8;0.667;8501;Lieboch;Lieboch;60629;1;Residential +25025055;FTTxCustomerLocation;Jägerweg 11;0.555;8501;Lieboch;Lieboch;60629;1;Residential +25025056;FTTxCustomerLocation;Jägerweg 12;531/1;8501;Lieboch;Lieboch;60629;1;Residential +25025057;FTTxCustomerLocation;Jägerweg 13;0.66;8501;Lieboch;Lieboch;60629;1;Residential +25025058;FTTxCustomerLocation;Jägerweg 14;0.666;8501;Lieboch;Lieboch;60629;1;Residential +25025059;FTTxCustomerLocation;Jägerweg 17;0.661;8501;Lieboch;Lieboch;60629;1;Residential +25025060;FTTxCustomerLocation;Jägerweg 18;527;8501;Lieboch;Lieboch;60629;1;Residential +25025061;FTTxCustomerLocation;Jägerweg 20;0.665;8501;Lieboch;Lieboch;60629;1;Residential +25025062;FTTxCustomerLocation;Jägerweg 21;443/6;8501;Lieboch;Lieboch;60629;1;Residential +25025063;FTTxCustomerLocation;Jägerweg 22;521;8501;Lieboch;Lieboch;60629;1;Residential +25025064;FTTxCustomerLocation;Jägerweg 26;0.393;8501;Lieboch;Lieboch;60629;1;Residential +25025065;FTTxCustomerLocation;Jägerweg 28;517/4;8501;Lieboch;Lieboch;60629;1;Residential +25025066;FTTxCustomerLocation;Jägerweg 30;0.395;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025067;FTTxCustomerLocation;Jägerweg 32;0.245;8501;Lieboch;Lieboch;60629;1;Residential +25025068;FTTxCustomerLocation;Jägerweg 36;0.663;8501;Lieboch;Lieboch;60629;1;Residential +25025069;FTTxCustomerLocation;Jägerweg 38;507;8501;Lieboch;Lieboch;60629;1;Residential +25025070;FTTxCustomerLocation;Jägerweg 38a;504;8501;Lieboch;Lieboch;60629;1;Residential +25025071;FTTxCustomerLocation;Jägerweg 40;0.543;8501;Lieboch;Lieboch;60629;1;Residential +25025072;FTTxCustomerLocation;Jägerweg 42;0.662;8501;Lieboch;Lieboch;60629;1;Residential +25025073;FTTxCustomerLocation;Kanzlerstraße 28;1494/5;8501;Lieboch;Lieboch;60629;1;Residential +25025074;FTTxCustomerLocation;Kanzlerstraße 30;0.111;8501;Lieboch;Lieboch;60629;1;Residential +25025075;FTTxCustomerLocation;Korngasse 2;0.683;8501;Lieboch;Lieboch;60629;1;Residential +25025076;FTTxCustomerLocation;Korngasse 3;0.688;8501;Lieboch;Lieboch;60629;1;Residential +25025077;FTTxCustomerLocation;Korngasse 5;0.689;8501;Lieboch;Lieboch;60629;1;Residential +25025078;FTTxCustomerLocation;Korngasse 6;0.685;8501;Lieboch;Lieboch;60629;1;Residential +25025079;FTTxCustomerLocation;Krengasse 9;0.551;8501;Lieboch;Lieboch;60629;1;Residential +25025080;FTTxCustomerLocation;Kurze Gasse 1;.782/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025081;FTTxCustomerLocation;Kurze Gasse 2;0.785;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025082;FTTxCustomerLocation;Kurze Gasse 4;0.786;8501;Lieboch;Lieboch;60629;1;Residential +25025083;FTTxCustomerLocation;Kurze Gasse 5;1014/9;8501;Lieboch;Lieboch;60629;1;Residential +25025084;FTTxCustomerLocation;Kurze Gasse 6;1014/9;8501;Lieboch;Lieboch;60629;1;Residential +25025085;FTTxCustomerLocation;Kurze Gasse 7;0.784;8501;Lieboch;Lieboch;60629;1;Residential +25025086;FTTxCustomerLocation;Laubweg 8;0.718;8501;Lieboch;Lieboch;60629;1;Residential +25025087;FTTxCustomerLocation;Laubweg 9;0.229;8501;Lieboch;Lieboch;60629;1;Residential +25025088;FTTxCustomerLocation;Laubweg 10;0.717;8501;Lieboch;Lieboch;60629;1;Residential +25025089;FTTxCustomerLocation;Lindengasse 2;1534/3;8501;Lieboch;Lieboch;60629;1;Residential +25025090;FTTxCustomerLocation;Lindengasse 4b;1071/11;8501;Lieboch;Lieboch;60629;1;Residential +25025091;FTTxCustomerLocation;Lindengasse 14;0.339;8501;Lieboch;Lieboch;60629;1;Residential +25025092;FTTxCustomerLocation;Lindengasse 15;1080/4;8501;Lieboch;Lieboch;60629;1;Residential +25025093;FTTxCustomerLocation;Lindengasse 16;0.354;8501;Lieboch;Lieboch;60629;1;Residential +25025094;FTTxCustomerLocation;Lindengasse 18;0.737;8501;Lieboch;Lieboch;60629;1;Residential +25025095;FTTxCustomerLocation;Lindengasse 19;0.267;8501;Lieboch;Lieboch;60629;1;Residential +25025096;FTTxCustomerLocation;Lindengasse 21;0.747;8501;Lieboch;Lieboch;60629;1;Residential +25025097;FTTxCustomerLocation;Lindengasse 23;1094/2;8501;Lieboch;Lieboch;60629;1;Residential +25025098;FTTxCustomerLocation;Lindengasse 25;0.746;8501;Lieboch;Lieboch;60629;1;Residential +25025099;FTTxCustomerLocation;Lindengasse 27;1094/1;8501;Lieboch;Lieboch;60629;1;Residential +25025100;FTTxCustomerLocation;Lindengasse 29;1094/3;8501;Lieboch;Lieboch;60629;1;Residential +25025101;FTTxCustomerLocation;Lindengasse 30;0.742;8501;Lieboch;Lieboch;60629;1;Residential +25025102;FTTxCustomerLocation;Lindengasse 32;0.119;8501;Lieboch;Lieboch;60629;1;Residential +25025103;FTTxCustomerLocation;Lusengasse 4;0.249;8501;Lieboch;Lieboch;60629;1;Residential +25025104;FTTxCustomerLocation;Lusengasse 6;0.787;8501;Lieboch;Lieboch;60629;1;Residential +25025105;FTTxCustomerLocation;Lusengasse 10;0.788;8501;Lieboch;Lieboch;60629;1;Residential +25025106;FTTxCustomerLocation;Lusengasse 12;0.789;8501;Lieboch;Lieboch;60629;1;Residential +25025107;FTTxCustomerLocation;Lusengasse 14;0.79;8501;Lieboch;Lieboch;60629;1;Residential +25025108;FTTxCustomerLocation;Mittelgasse 4;1350/4;8501;Lieboch;Lieboch;60629;1;Residential +25025109;FTTxCustomerLocation;Mittelgasse 6;0.693;8501;Lieboch;Lieboch;60629;1;Residential +25025110;FTTxCustomerLocation;Mittelgasse 7;1545/2;8501;Lieboch;Lieboch;60629;1;Residential +25025111;FTTxCustomerLocation;Mittelgasse 8;0.692;8501;Lieboch;Lieboch;60629;1;Residential +25025112;FTTxCustomerLocation;Mittelgasse 9;1346/4;8501;Lieboch;Lieboch;60629;1;Residential +25025113;FTTxCustomerLocation;Mittelgasse 10;0.691;8501;Lieboch;Lieboch;60629;1;Residential +25025114;FTTxCustomerLocation;Mittelgasse 11;1346/1;8501;Lieboch;Lieboch;60629;1;Residential +25025115;FTTxCustomerLocation;Mittelgasse 13;1346/3;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025116;FTTxCustomerLocation;Neugasse 1;.646/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025117;FTTxCustomerLocation;Neugasse 3;.641/1;8501;Lieboch;Lieboch;60629;1;Residential +25025118;FTTxCustomerLocation;Neugasse 4;0.642;8501;Lieboch;Lieboch;60629;1;Residential +25025119;FTTxCustomerLocation;Neugasse 5;0.64;8501;Lieboch;Lieboch;60629;1;Residential +25025120;FTTxCustomerLocation;Neugasse 6;0.637;8501;Lieboch;Lieboch;60629;1;Residential +25025121;FTTxCustomerLocation;Neugasse 8;0.638;8501;Lieboch;Lieboch;60629;1;Residential +25025122;FTTxCustomerLocation;Neugasse 10;0.639;8501;Lieboch;Lieboch;60629;1;Residential +25025123;FTTxCustomerLocation;Packer Straße 3;1625/2;8501;Lieboch;Lieboch;60629;1;Multiple dwellings +25025125;FTTxCustomerLocation;Packer Straße 10;0.225;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025126;FTTxCustomerLocation;Packer Straße 12;0.716;8501;Lieboch;Lieboch;60629;2;Company +25025127;FTTxCustomerLocation;Packer Straße 13;0.803;8501;Lieboch;Lieboch;60629;1;Residential +25025128;FTTxCustomerLocation;Packer Straße 17;0.281;8501;Lieboch;Lieboch;60629;1;Company +25025129;FTTxCustomerLocation;Packer Straße 20;0.301;8501;Lieboch;Lieboch;60629;1;Residential +25025130;FTTxCustomerLocation;Packer Straße 45;0.333;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025131;FTTxCustomerLocation;Packer Straße 53;0.336;8501;Lieboch;Lieboch;60629;1;Residential +25025132;FTTxCustomerLocation;Packer Straße 55;0.531;8501;Lieboch;Lieboch;60629;1;Residential +25025133;FTTxCustomerLocation;Packer Straße 59;0.53;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025134;FTTxCustomerLocation;Packer Straße 60;0.156;8501;Lieboch;Lieboch;60629;1;Residential +25025135;FTTxCustomerLocation;Packer Straße 62;0.219;8501;Lieboch;Lieboch;60629;1;Residential +25025136;FTTxCustomerLocation;Packer Straße 62;0.219;8501;Lieboch;Lieboch;60629;2;Residential +25025137;FTTxCustomerLocation;Packer Straße 63;0.751;8501;Lieboch;Lieboch;60629;2;Company +25025138;FTTxCustomerLocation;Packer Straße 65;0.376;8501;Lieboch;Lieboch;60629;1;Residential +25025139;FTTxCustomerLocation;Packer Straße 66;0.558;8501;Lieboch;Lieboch;60629;1;Residential +25025140;FTTxCustomerLocation;Packer Straße 67;0.294;8501;Lieboch;Lieboch;60629;1;Residential +25025141;FTTxCustomerLocation;Packer Straße 68;0.248;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025142;FTTxCustomerLocation;Packer Straße 70;.117/2;8501;Lieboch;Lieboch;60629;2;Company +25025143;FTTxCustomerLocation;Packer Straße 71;1051;8501;Lieboch;Lieboch;60629;1;Residential +25025144;FTTxCustomerLocation;Packer Straße 73;1052/2;8501;Lieboch;Lieboch;60629;1;Residential +25025145;FTTxCustomerLocation;Packer Straße 74;0.752;8501;Lieboch;Lieboch;60629;1;Residential +25025146;FTTxCustomerLocation;Packer Straße 75;1053;8501;Lieboch;Lieboch;60629;2;Company +25025147;FTTxCustomerLocation;Packer Straße 76;0.748;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025148;FTTxCustomerLocation;Packer Straße 77;.120/2;8501;Lieboch;Lieboch;60629;1;Residential +25025149;FTTxCustomerLocation;Packer Straße 77;.120/2;8501;Lieboch;Lieboch;60629;2;Residential +25025150;FTTxCustomerLocation;Packer Straße 78;1078/4;8501;Lieboch;Lieboch;60629;1;Residential +25025151;FTTxCustomerLocation;Packer Straße 80;.117/1;8501;Lieboch;Lieboch;60629;1;Residential +25025152;FTTxCustomerLocation;Packer Straße 82;.117/3;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025153;FTTxCustomerLocation;Packer Straße 83;.377/2;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025154;FTTxCustomerLocation;Packer Straße 85;.377/1;8501;Lieboch;Lieboch;60629;7;Multiple dwellings +25025155;FTTxCustomerLocation;Packer Straße 87;0.532;8501;Lieboch;Lieboch;60629;17;Multiple dwellings +25025156;FTTxCustomerLocation;Packer Straße 88;1082/3;8501;Lieboch;Lieboch;60629;1;Residential +25025157;FTTxCustomerLocation;Packer Straße 90;0.21;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025158;FTTxCustomerLocation;Packer Straße 91;0.198;8501;Lieboch;Lieboch;60629;1;Residential +25025159;FTTxCustomerLocation;Packer Straße 93;0.759;8501;Lieboch;Lieboch;60629;1;Residential +25025160;FTTxCustomerLocation;Packer Straße 94;0.34;8501;Lieboch;Lieboch;60629;1;Residential +25025161;FTTxCustomerLocation;Packer Straße 96;1096/3;8501;Lieboch;Lieboch;60629;1;Residential +25025162;FTTxCustomerLocation;Packer Straße 97;.75/1;8501;Lieboch;Lieboch;60629;1;Residential +25025163;FTTxCustomerLocation;Packer Straße 98;0.244;8501;Lieboch;Lieboch;60629;1;Residential +25025164;FTTxCustomerLocation;Marktplatz 1;.75/1;8501;Lieboch;Lieboch;60629;1;Company +25025165;FTTxCustomerLocation;Packer Straße 101;0.296;8501;Lieboch;Lieboch;60629;1;Residential +25025166;FTTxCustomerLocation;Packer Straße 102;0.223;8501;Lieboch;Lieboch;60629;1;Residential +25025167;FTTxCustomerLocation;Packer Straße 103;0.296;8501;Lieboch;Lieboch;60629;1;Residential +25025168;FTTxCustomerLocation;Packer Straße 104;1121;8501;Lieboch;Lieboch;60629;1;Residential +25025169;FTTxCustomerLocation;Packer Straße 106;0.151;8501;Lieboch;Lieboch;60629;1;Residential +25025170;FTTxCustomerLocation;Packer Straße 107;1188/3;8501;Lieboch;Lieboch;60629;1;Residential +25025171;FTTxCustomerLocation;Packer Straße 108;0.2;8501;Lieboch;Lieboch;60629;1;Residential +25025172;FTTxCustomerLocation;Packer Straße 109;1188/7;8501;Lieboch;Lieboch;60629;1;Residential +25025173;FTTxCustomerLocation;Packer Straße 111;2115;8501;Lieboch;Lieboch;60629;7;Company +25025174;FTTxCustomerLocation;Packer Straße 112;0.15;8501;Lieboch;Lieboch;60629;1;Residential +25025175;FTTxCustomerLocation;Packer Straße 113;0.874;8501;Lieboch;Lieboch;60629;1;Company +25025176;FTTxCustomerLocation;Packer Straße 115;.871/1;8501;Lieboch;Lieboch;60629;1;Residential +25025177;FTTxCustomerLocation;Packer Straße 116;0.87;8501;Lieboch;Lieboch;60629;1;Residential +25025178;FTTxCustomerLocation;Packer Straße 117;.871/2;8501;Lieboch;Lieboch;60629;1;Residential +25025179;FTTxCustomerLocation;Packer Straße 119;0.872;8501;Lieboch;Lieboch;60629;1;Residential +25025180;FTTxCustomerLocation;Packer Straße 120;1199/1;8501;Lieboch;Lieboch;60629;5;Multiple dwellings +25025181;FTTxCustomerLocation;Packer Straße 120;1199/1;8501;Lieboch;Lieboch;60629;1;Company +25025182;FTTxCustomerLocation;Packer Straße 121;.871/3;8501;Lieboch;Lieboch;60629;1;Company +25025183;FTTxCustomerLocation;Packer Straße 122;0.88;8501;Lieboch;Lieboch;60629;2;Company +25025184;FTTxCustomerLocation;Packer Straße 123;2109;8501;Lieboch;Lieboch;60629;1;Company +25025185;FTTxCustomerLocation;Packer Straße 125;0.87;8501;Lieboch;Lieboch;60629;13;Multiple dwellings +25025186;FTTxCustomerLocation;Packer Straße 127;2105;8501;Lieboch;Lieboch;60629;1;Residential +25025187;FTTxCustomerLocation;Packer Straße 128;.767/2;8501;Lieboch;Lieboch;60629;3;Company +25025188;FTTxCustomerLocation;Packer Straße 132;1260/7;8501;Lieboch;Lieboch;60629;14;Multiple dwellings +25025189;FTTxCustomerLocation;Packer Straße 135;2103;8501;Lieboch;Lieboch;60629;8;Multiple dwellings +25025190;FTTxCustomerLocation;Packer Straße 137;2102/2;8501;Lieboch;Lieboch;60629;1;Residential +25025191;FTTxCustomerLocation;Packer Straße 139;2101;8501;Lieboch;Lieboch;60629;1;Residential +25025192;FTTxCustomerLocation;Packer Straße 142;0.771;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025193;FTTxCustomerLocation;Packer Straße 144;0.77;8501;Lieboch;Lieboch;60629;1;Company +25025194;FTTxCustomerLocation;Packer Straße 145;2098/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025195;FTTxCustomerLocation;Packer Straße 146;0.457;8501;Lieboch;Lieboch;60629;1;Residential +25025196;FTTxCustomerLocation;Packer Straße 147;2098/2;8501;Lieboch;Lieboch;60629;2;Company +25025197;FTTxCustomerLocation;Packer Straße 148;0.569;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025198;FTTxCustomerLocation;Packer Straße 150;1260/2;8501;Lieboch;Lieboch;60629;1;Residential +25025199;FTTxCustomerLocation;Packer Straße 151;2097/1;8501;Lieboch;Lieboch;60629;1;Residential +25025200;FTTxCustomerLocation;Packer Straße 152;614/2;8501;Lieboch;Lieboch;60629;1;Residential +25025201;FTTxCustomerLocation;Packer Straße 153;2095/3;8501;Lieboch;Lieboch;60629;1;Residential +25025202;FTTxCustomerLocation;Packer Straße 155;2094/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025203;FTTxCustomerLocation;Packer Straße 156;0.54;8501;Lieboch;Lieboch;60629;1;Residential +25025204;FTTxCustomerLocation;Packer Straße 162;0.773;8501;Lieboch;Lieboch;60629;1;Residential +25025205;FTTxCustomerLocation;Packer Straße 165;0.869;8501;Lieboch;Lieboch;60629;1;Residential +25025206;FTTxCustomerLocation;Packer Straße 167;2088/2;8501;Lieboch;Lieboch;60629;1;Residential +25025207;FTTxCustomerLocation;Packer Straße 168;.53/1;8501;Lieboch;Lieboch;60629;1;Residential +25025208;FTTxCustomerLocation;Packer Straße 169;2087/1;8501;Lieboch;Lieboch;60629;1;Residential +25025209;FTTxCustomerLocation;Packer Straße 171;2087/3;8501;Lieboch;Lieboch;60629;1;Residential +25025210;FTTxCustomerLocation;Packer Straße 172;0.232;8501;Lieboch;Lieboch;60629;1;Residential +25025211;FTTxCustomerLocation;Packer Straße 179;2083;8501;Lieboch;Lieboch;60629;1;Residential +25025212;FTTxCustomerLocation;Packer Straße 180;0.254;8501;Lieboch;Lieboch;60629;1;Residential +25025213;FTTxCustomerLocation;Packer Straße 181;2082;8501;Lieboch;Lieboch;60629;1;Residential +25025214;FTTxCustomerLocation;Packer Straße 185;0.892;8501;Lieboch;Lieboch;60629;1;Residential +25025215;FTTxCustomerLocation;Packer Straße 188;.382/2;8501;Lieboch;Lieboch;60629;9;Multiple dwellings +25025216;FTTxCustomerLocation;Packer Straße 190;.775/1;8501;Lieboch;Lieboch;60629;1;Residential +25025217;FTTxCustomerLocation;Packer Straße 192;0.384;8501;Lieboch;Lieboch;60629;1;Residential +25025218;FTTxCustomerLocation;Packer Straße 193;2073;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025219;FTTxCustomerLocation;Packer Straße 195;2067;8501;Lieboch;Lieboch;60629;1;Residential +25025220;FTTxCustomerLocation;Packer Straße 197;2066/1;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25025221;FTTxCustomerLocation;Packer Straße 198;549;8501;Lieboch;Lieboch;60629;1;Residential +25025222;FTTxCustomerLocation;Packer Straße 199;2066/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025223;FTTxCustomerLocation;Packer Straße 200;548/4;8501;Lieboch;Lieboch;60629;1;Residential +25025224;FTTxCustomerLocation;Packer Straße 203;2065;8501;Lieboch;Lieboch;60629;1;Residential +25025225;FTTxCustomerLocation;Packer Straße 205;2064;8501;Lieboch;Lieboch;60629;1;Residential +25025226;FTTxCustomerLocation;Packer Straße 206;546;8501;Lieboch;Lieboch;60629;1;Residential +25025227;FTTxCustomerLocation;Packer Straße 212;0.448;8501;Lieboch;Lieboch;60629;1;Residential +25025228;FTTxCustomerLocation;Packer Straße 213;2062/2;8501;Lieboch;Lieboch;60629;1;Residential +25025229;FTTxCustomerLocation;Packer Straße 215;2063;8501;Lieboch;Lieboch;60629;1;Residential +25025230;FTTxCustomerLocation;Packer Straße 219;2062/6;8501;Lieboch;Lieboch;60629;1;Residential +25025231;FTTxCustomerLocation;Pfarrgasse 6;0.363;8501;Lieboch;Lieboch;60629;1;Residential +25025232;FTTxCustomerLocation;Rebhuhnweg 3;1474/31;8501;Lieboch;Lieboch;60629;1;Residential +25025233;FTTxCustomerLocation;Rebhuhnweg 5;1474/46;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025234;FTTxCustomerLocation;Rebhuhnweg 7;1474/10;8501;Lieboch;Lieboch;60629;1;Residential +25025235;FTTxCustomerLocation;Rehweg 11;0.325;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025236;FTTxCustomerLocation;Rehweg 13;1623/17;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025237;FTTxCustomerLocation;Rehweg 17;1623/25;8501;Lieboch;Lieboch;60629;1;Residential +25025238;FTTxCustomerLocation;Rehweg 19;1623/26;8501;Lieboch;Lieboch;60629;1;Residential +25025239;FTTxCustomerLocation;Ringweg 1;0.669;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025240;FTTxCustomerLocation;Ringweg 3;534/2;8501;Lieboch;Lieboch;60629;1;Residential +25025241;FTTxCustomerLocation;Ringweg 4;.52/3;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025242;FTTxCustomerLocation;Ringweg 5;533;8501;Lieboch;Lieboch;60629;1;Residential +25025243;FTTxCustomerLocation;Ringweg 8;0.671;8501;Lieboch;Lieboch;60629;1;Residential +25025244;FTTxCustomerLocation;Ringweg 10;0.672;8501;Lieboch;Lieboch;60629;1;Residential +25025245;FTTxCustomerLocation;Ringweg 11;575/8;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025246;FTTxCustomerLocation;Ringweg 12;0.673;8501;Lieboch;Lieboch;60629;1;Residential +25025247;FTTxCustomerLocation;Ringweg 15;0.675;8501;Lieboch;Lieboch;60629;1;Residential +25025248;FTTxCustomerLocation;Ringweg 17;0.676;8501;Lieboch;Lieboch;60629;1;Residential +25025249;FTTxCustomerLocation;Ringweg 19;0.677;8501;Lieboch;Lieboch;60629;1;Residential +25025250;FTTxCustomerLocation;Ringweg 23;0.678;8501;Lieboch;Lieboch;60629;1;Residential +25025251;FTTxCustomerLocation;Ringweg 25;575/2;8501;Lieboch;Lieboch;60629;1;Residential +25025252;FTTxCustomerLocation;Rupert-Schmid-Platz 1;0.75;8501;Lieboch;Lieboch;60629;1;Company +25025253;FTTxCustomerLocation;Rupert-Schmid-Platz 2;885/7;8501;Lieboch;Lieboch;60629;8;Multiple dwellings +25025254;FTTxCustomerLocation;Rupert-Schmid-Platz 3;886/5;8501;Lieboch;Lieboch;60629;8;Multiple dwellings +25025255;FTTxCustomerLocation;Rupert-Schmid-Platz 5;0.76;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25025256;FTTxCustomerLocation;Rupert-Schmid-Platz 6;0.76;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25025257;FTTxCustomerLocation;Seilergasse 1;0.522;8501;Lieboch;Lieboch;60629;1;Residential +25025258;FTTxCustomerLocation;Seilergasse 2;0.565;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025259;FTTxCustomerLocation;Seilergasse 3;0.704;8501;Lieboch;Lieboch;60629;1;Residential +25025260;FTTxCustomerLocation;Seilergasse 4;1361/4;8501;Lieboch;Lieboch;60629;1;Residential +25025261;FTTxCustomerLocation;Seilergasse 7;0.42;8501;Lieboch;Lieboch;60629;1;Residential +25025262;FTTxCustomerLocation;Seilergasse 10;0.418;8501;Lieboch;Lieboch;60629;1;Residential +25025263;FTTxCustomerLocation;Seilergasse 10a;0.705;8501;Lieboch;Lieboch;60629;1;Residential +25025264;FTTxCustomerLocation;Seilergasse 12;0.419;8501;Lieboch;Lieboch;60629;1;Residential +25025265;FTTxCustomerLocation;Seilergasse 14;0.421;8501;Lieboch;Lieboch;60629;1;Residential +25025266;FTTxCustomerLocation;Seilergasse 16;0.423;8501;Lieboch;Lieboch;60629;1;Residential +25025267;FTTxCustomerLocation;Seilergasse 22;0.424;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025268;FTTxCustomerLocation;Siedlungsstraße 2;1533/7;8501;Lieboch;Lieboch;60629;1;Other +25025269;FTTxCustomerLocation;Siedlungsstraße 6;0.439;8501;Lieboch;Lieboch;60629;1;Residential +25025270;FTTxCustomerLocation;Siedlungsstraße 8;0.375;8501;Lieboch;Lieboch;60629;1;Residential +25025271;FTTxCustomerLocation;Siedlungsstraße 9;0.441;8501;Lieboch;Lieboch;60629;1;Residential +25025272;FTTxCustomerLocation;Siedlungsstraße 10;0.35;8501;Lieboch;Lieboch;60629;1;Residential +25025273;FTTxCustomerLocation;Siedlungsstraße 11;0.557;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025274;FTTxCustomerLocation;Siedlungsstraße 12;0.732;8501;Lieboch;Lieboch;60629;1;Residential +25025275;FTTxCustomerLocation;Siedlungsstraße 13;0.453;8501;Lieboch;Lieboch;60629;1;Residential +25025276;FTTxCustomerLocation;Siedlungsstraße 14;0.351;8501;Lieboch;Lieboch;60629;1;Residential +25025277;FTTxCustomerLocation;Siedlungsstraße 15;0.352;8501;Lieboch;Lieboch;60629;1;Residential +25025278;FTTxCustomerLocation;Siedlungsstraße 17;0.353;8501;Lieboch;Lieboch;60629;1;Residential +25025279;FTTxCustomerLocation;Siedlungsstraße 19;0.438;8501;Lieboch;Lieboch;60629;1;Residential +25025280;FTTxCustomerLocation;Siedlungsstraße 22;1627/12;8501;Lieboch;Lieboch;60629;1;Residential +25025281;FTTxCustomerLocation;Siedlungsstraße 23;0.434;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025282;FTTxCustomerLocation;Siedlungsstraße 24;0.731;8501;Lieboch;Lieboch;60629;1;Residential +25025283;FTTxCustomerLocation;Siedlungsstraße 25;0.435;8501;Lieboch;Lieboch;60629;1;Residential +25025284;FTTxCustomerLocation;Siedlungsstraße 27;0.436;8501;Lieboch;Lieboch;60629;1;Residential +25025285;FTTxCustomerLocation;Siedlungsstraße 27;0.436;8501;Lieboch;Lieboch;60629;1;Residential +25025286;FTTxCustomerLocation;Siedlungsstraße 28;0.73;8501;Lieboch;Lieboch;60629;1;Residential +25025287;FTTxCustomerLocation;Siedlungsstraße 29;0.437;8501;Lieboch;Lieboch;60629;1;Residential +25025288;FTTxCustomerLocation;Siedlungsstraße 30;0.729;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025289;FTTxCustomerLocation;Siedlungsstraße 31;0.493;8501;Lieboch;Lieboch;60629;1;Residential +25025290;FTTxCustomerLocation;Siedlungsstraße 34;1627/18;8501;Lieboch;Lieboch;60629;1;Residential +25025291;FTTxCustomerLocation;Siedlungsstraße 35;.723/1;8501;Lieboch;Lieboch;60629;1;Residential +25025292;FTTxCustomerLocation;Siedlungsstraße 37;.723/2;8501;Lieboch;Lieboch;60629;1;Residential +25025293;FTTxCustomerLocation;Siedlungsstraße 39;0.722;8501;Lieboch;Lieboch;60629;1;Residential +25025294;FTTxCustomerLocation;Siedlungsstraße 40;0.728;8501;Lieboch;Lieboch;60629;1;Residential +25025295;FTTxCustomerLocation;Siedlungsstraße 41;0.721;8501;Lieboch;Lieboch;60629;1;Residential +25025296;FTTxCustomerLocation;Siedlungsstraße 41a;1624/17;8501;Lieboch;Lieboch;60629;1;Residential +25025297;FTTxCustomerLocation;Siedlungsstraße 42;0.727;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025298;FTTxCustomerLocation;Siedlungsstraße 43;0.72;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025299;FTTxCustomerLocation;Siedlungsstraße 44;1627/9;8501;Lieboch;Lieboch;60629;1;Residential +25025300;FTTxCustomerLocation;Siedlungsstraße 45;0.719;8501;Lieboch;Lieboch;60629;1;Residential +25025301;FTTxCustomerLocation;Siedlungsstraße 46;0.726;8501;Lieboch;Lieboch;60629;1;Residential +25025302;FTTxCustomerLocation;Siedlungsstraße 47;1623/18;8501;Lieboch;Lieboch;60629;1;Residential +25025303;FTTxCustomerLocation;Siedlungsstraße 48;0.725;8501;Lieboch;Lieboch;60629;1;Residential +25025304;FTTxCustomerLocation;Siedlungsstraße 49;1623/20;8501;Lieboch;Lieboch;60629;1;Residential +25025305;FTTxCustomerLocation;Siedlungsstraße 50;0.724;8501;Lieboch;Lieboch;60629;1;Residential +25025306;FTTxCustomerLocation;Sportplatzgasse 7;1390/2;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025307;FTTxCustomerLocation;Sportplatzgasse 10;0.706;8501;Lieboch;Lieboch;60629;1;Residential +25025308;FTTxCustomerLocation;Sportplatzgasse 11;1390/4;8501;Lieboch;Lieboch;60629;1;Residential +25025309;FTTxCustomerLocation;Villengasse 1;1028/6;8501;Lieboch;Lieboch;60629;1;Residential +25025310;FTTxCustomerLocation;Villengasse 3;1027/10;8501;Lieboch;Lieboch;60629;1;Residential +25025311;FTTxCustomerLocation;Villengasse 5;1027/8;8501;Lieboch;Lieboch;60629;1;Residential +25025312;FTTxCustomerLocation;Villengasse 6;0.528;8501;Lieboch;Lieboch;60629;1;Residential +25025313;FTTxCustomerLocation;Villengasse 7;1027/9;8501;Lieboch;Lieboch;60629;1;Residential +25025314;FTTxCustomerLocation;Villengasse 8;0.529;8501;Lieboch;Lieboch;60629;1;Residential +25025315;FTTxCustomerLocation;Villengasse 9;1027/6;8501;Lieboch;Lieboch;60629;1;Residential +25025316;FTTxCustomerLocation;Villengasse 10;.614/1;8501;Lieboch;Lieboch;60629;1;Residential +25025317;FTTxCustomerLocation;Villengasse 11;0.526;8501;Lieboch;Lieboch;60629;1;Residential +25025318;FTTxCustomerLocation;Villengasse 13;0.524;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025319;FTTxCustomerLocation;Villengasse 15;0.791;8501;Lieboch;Lieboch;60629;1;Residential +25025320;FTTxCustomerLocation;Villengasse 18;0.585;8501;Lieboch;Lieboch;60629;1;Residential +25025321;FTTxCustomerLocation;Wassergasse 1;0.762;8501;Lieboch;Lieboch;60629;1;Residential +25025322;FTTxCustomerLocation;Wassergasse 3;.763/1;8501;Lieboch;Lieboch;60629;1;Residential +25025323;FTTxCustomerLocation;Wassergasse 4;0.58;8501;Lieboch;Lieboch;60629;1;Residential +25025324;FTTxCustomerLocation;Wassergasse 5;902/1;8501;Lieboch;Lieboch;60629;1;Residential +25025325;FTTxCustomerLocation;Wassergasse 9;0.764;8501;Lieboch;Lieboch;60629;1;Residential +25025326;FTTxCustomerLocation;Wassergasse 11;0.765;8501;Lieboch;Lieboch;60629;1;Residential +25025327;FTTxCustomerLocation;Weidengasse 1;0.451;8501;Lieboch;Lieboch;60629;1;Residential +25025328;FTTxCustomerLocation;Weidengasse 3;.774/1;8501;Lieboch;Lieboch;60629;1;Residential +25025329;FTTxCustomerLocation;Weidengasse 7;.382/1;8501;Lieboch;Lieboch;60629;1;Residential +25025330;FTTxCustomerLocation;Weidengasse 10;0.652;8501;Lieboch;Lieboch;60629;1;Residential +25025331;FTTxCustomerLocation;Weidengasse 11;0.656;8501;Lieboch;Lieboch;60629;1;Residential +25025332;FTTxCustomerLocation;Weidengasse 12;0.651;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025333;FTTxCustomerLocation;Weidengasse 15;0.383;8501;Lieboch;Lieboch;60629;1;Residential +25025334;FTTxCustomerLocation;Weidengasse 16;0.553;8501;Lieboch;Lieboch;60629;1;Residential +25025335;FTTxCustomerLocation;Weidengasse 18;412;8501;Lieboch;Lieboch;60629;1;Residential +25025336;FTTxCustomerLocation;Weidengasse 22;416/1;8501;Lieboch;Lieboch;60629;1;Residential +25025337;FTTxCustomerLocation;Weidengasse 27;0.171;8501;Lieboch;Lieboch;60629;1;Residential +25025338;FTTxCustomerLocation;Weidengasse 33;416/2;8501;Lieboch;Lieboch;60629;1;Other +25025339;FTTxCustomerLocation;Weidengasse 39;424/2;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025340;FTTxCustomerLocation;Wiesengasse 2;0.44;8501;Lieboch;Lieboch;60629;1;Residential +25025341;FTTxCustomerLocation;Wiesengasse 3;1071/16;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025342;FTTxCustomerLocation;Wiesengasse 7;0.276;8501;Lieboch;Lieboch;60629;1;Residential +25025343;FTTxCustomerLocation;Wiesengasse 8;.455/2;8501;Lieboch;Lieboch;60629;1;Residential +25025344;FTTxCustomerLocation;Zweiggasse 3;0.611;8501;Lieboch;Lieboch;60629;1;Residential +25025345;FTTxCustomerLocation;Zweiggasse 4;0.61;8501;Lieboch;Lieboch;60629;1;Residential +25025346;FTTxCustomerLocation;Florianweg 1;1479/1;8501;Lieboch;Lieboch;60629;1;Residential +25025347;FTTxCustomerLocation;Florianweg 3;1479/8;8501;Lieboch;Lieboch;60629;1;Residential +25025348;FTTxCustomerLocation;Florianweg 5;1479/7;8501;Lieboch;Lieboch;60629;1;Residential +25025349;FTTxCustomerLocation;Florianweg 6;1479/4;8501;Lieboch;Lieboch;60629;1;Residential +25025350;FTTxCustomerLocation;Floraweg 5;609/2;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025351;FTTxCustomerLocation;Floraweg 9;604/5;8501;Lieboch;Lieboch;60629;1;Residential +25025352;FTTxCustomerLocation;Grillweg 4;1353/3;8501;Lieboch;Lieboch;60629;1;Residential +25025353;FTTxCustomerLocation;Grillweg 6;1353/8;8501;Lieboch;Lieboch;60629;1;Residential +25025354;FTTxCustomerLocation;Grillweg 10;1353/6;8501;Lieboch;Lieboch;60629;1;Residential +25025355;FTTxCustomerLocation;Grillweg 12;1353/5;8501;Lieboch;Lieboch;60629;1;Residential +25025356;FTTxCustomerLocation;Grenzgasse 1;1477/2;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025357;FTTxCustomerLocation;Grenzgasse 2;1477/6;8501;Lieboch;Lieboch;60629;1;Residential +25025358;FTTxCustomerLocation;Grenzgasse 3;1477/3;8501;Lieboch;Lieboch;60629;1;Residential +25025359;FTTxCustomerLocation;Grenzgasse 5;1477/4;8501;Lieboch;Lieboch;60629;1;Residential +25025360;FTTxCustomerLocation;Grünegasse 1;1099/1;8501;Lieboch;Lieboch;60629;1;Residential +25025361;FTTxCustomerLocation;Grünegasse 2;1112/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025362;FTTxCustomerLocation;Grünegasse 4;1111/2;8501;Lieboch;Lieboch;60629;1;Residential +25025363;FTTxCustomerLocation;Grünegasse 5;1105/2;8501;Lieboch;Lieboch;60629;1;Residential +25025364;FTTxCustomerLocation;Grünegasse 7;1105/1;8501;Lieboch;Lieboch;60629;1;Residential +25025365;FTTxCustomerLocation;Grünegasse 8;0.745;8501;Lieboch;Lieboch;60629;1;Residential +25025366;FTTxCustomerLocation;Grünegasse 9;1100/2;8501;Lieboch;Lieboch;60629;1;Residential +25025367;FTTxCustomerLocation;Grünegasse 12;1112/2;8501;Lieboch;Lieboch;60629;1;Residential +25025368;FTTxCustomerLocation;Grünegasse 13;1099/2;8501;Lieboch;Lieboch;60629;1;Residential +25025369;FTTxCustomerLocation;Grünegasse 14;1111/3;8501;Lieboch;Lieboch;60629;1;Residential +25025370;FTTxCustomerLocation;Josef-Mihalits-Straße 4;1244/2;8501;Lieboch;Lieboch;60629;1;Residential +25025371;FTTxCustomerLocation;Josef-Mihalits-Straße 6;1244/3;8501;Lieboch;Lieboch;60629;1;Residential +25025372;FTTxCustomerLocation;Josef-Mihalits-Straße 8;1250;8501;Lieboch;Lieboch;60629;1;Residential +25025373;FTTxCustomerLocation;Josef-Mihalits-Straße 10;1242/5;8501;Lieboch;Lieboch;60629;1;Other +25025374;FTTxCustomerLocation;Josef-Mihalits-Straße 12;1242/2;8501;Lieboch;Lieboch;60629;1;Residential +25025375;FTTxCustomerLocation;Josef-Mihalits-Straße 20;1241/2;8501;Lieboch;Lieboch;60629;1;Residential +25025376;FTTxCustomerLocation;Kleegasse 2;1199/4;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025377;FTTxCustomerLocation;Kleegasse 4;1199/4;8501;Lieboch;Lieboch;60629;1;Residential +25025378;FTTxCustomerLocation;Kleegasse 6;1199/3;8501;Lieboch;Lieboch;60629;1;Residential +25025379;FTTxCustomerLocation;Kleegasse 8;1213/3;8501;Lieboch;Lieboch;60629;1;Residential +25025380;FTTxCustomerLocation;Obstgasse 4;0.686;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025381;FTTxCustomerLocation;Quergasse 1;1046/1;8501;Lieboch;Lieboch;60629;1;Residential +25025382;FTTxCustomerLocation;Quergasse 5;1046/8;8501;Lieboch;Lieboch;60629;1;Residential +25025383;FTTxCustomerLocation;Ulmgasse 2;.80/1;8501;Lieboch;Lieboch;60629;1;Residential +25025384;FTTxCustomerLocation;Ulmgasse 4;.80/2;8501;Lieboch;Lieboch;60629;1;Residential +25025385;FTTxCustomerLocation;Ulmgasse 5;1386/13;8501;Lieboch;Lieboch;60629;1;Residential +25025386;FTTxCustomerLocation;Ulmgasse 9;0.703;8501;Lieboch;Lieboch;60629;1;Residential +25025387;FTTxCustomerLocation;Ulmgasse 11;1386/15;8501;Lieboch;Lieboch;60629;1;Residential +25025388;FTTxCustomerLocation;Ulmgasse 12;1386/24;8501;Lieboch;Lieboch;60629;1;Residential +25025389;FTTxCustomerLocation;Ulmgasse 13;1386/16;8501;Lieboch;Lieboch;60629;1;Residential +25025390;FTTxCustomerLocation;Ulmgasse 14;1386/23;8501;Lieboch;Lieboch;60629;1;Residential +25025391;FTTxCustomerLocation;Ulmgasse 15;1386/17;8501;Lieboch;Lieboch;60629;1;Residential +25025392;FTTxCustomerLocation;Ulmgasse 17;1386/18;8501;Lieboch;Lieboch;60629;1;Residential +25025393;FTTxCustomerLocation;Ulmgasse 19;1386/19;8501;Lieboch;Lieboch;60629;1;Residential +25025394;FTTxCustomerLocation;Ulmgasse 21;1386/20;8501;Lieboch;Lieboch;60629;1;Residential +25025395;FTTxCustomerLocation;Ulmgasse 23;1386/21;8501;Lieboch;Lieboch;60629;1;Residential +25025396;FTTxCustomerLocation;Ulmgasse 25;1386/22;8501;Lieboch;Lieboch;60629;1;Residential +25025397;FTTxCustomerLocation;Weizenweg 1;924/1;8501;Lieboch;Lieboch;60629;1;Residential +25025398;FTTxCustomerLocation;Weizenweg 3;924/2;8501;Lieboch;Lieboch;60629;1;Residential +25025399;FTTxCustomerLocation;Weizenweg 5;924/3;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025400;FTTxCustomerLocation;Weizenweg 7;924/4;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025401;FTTxCustomerLocation;Weizenweg 11;924/6;8501;Lieboch;Lieboch;60629;1;Residential +25025402;FTTxCustomerLocation;Birkenstraße 2;2112;8501;Lieboch;Lieboch;60629;1;Residential +25025403;FTTxCustomerLocation;Birkenstraße 4;2110;8501;Lieboch;Lieboch;60629;1;Residential +25025404;FTTxCustomerLocation;Birkenstraße 12;2104/2;8501;Lieboch;Lieboch;60629;1;Residential +25025405;FTTxCustomerLocation;Birkenstraße 13;2128/2;8501;Lieboch;Lieboch;60629;1;Residential +25025406;FTTxCustomerLocation;Birkenstraße 17;2127/2;8501;Lieboch;Lieboch;60629;1;Residential +25025407;FTTxCustomerLocation;Birkenstraße 19;2126/9;8501;Lieboch;Lieboch;60629;1;Residential +25025408;FTTxCustomerLocation;Birkenstraße 19a;2126/6;8501;Lieboch;Lieboch;60629;1;Residential +25025409;FTTxCustomerLocation;Birkenstraße 19b;2126/5;8501;Lieboch;Lieboch;60629;1;Residential +25025410;FTTxCustomerLocation;Birkenstraße 19c;2126/8;8501;Lieboch;Lieboch;60629;1;Residential +25025411;FTTxCustomerLocation;Birkenstraße 21;2126/3;8501;Lieboch;Lieboch;60629;1;Residential +25025412;FTTxCustomerLocation;Birkenstraße 23;2121;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025413;FTTxCustomerLocation;Birkenstraße 25;2125;8501;Lieboch;Lieboch;60629;1;Residential +25025414;FTTxCustomerLocation;Birkenstraße 27;2123;8501;Lieboch;Lieboch;60629;1;Residential +25025415;FTTxCustomerLocation;Birkenstraße 30;2094/2;8501;Lieboch;Lieboch;60629;1;Residential +25025416;FTTxCustomerLocation;Nadeggerweg 6;2090;8501;Lieboch;Lieboch;60629;1;Residential +25025417;FTTxCustomerLocation;Badeggerweg 1;0.694;8501;Lieboch;Lieboch;60629;1;Residential +25025418;FTTxCustomerLocation;Badeggerweg 3;1478/7;8501;Lieboch;Lieboch;60629;1;Residential +25025419;FTTxCustomerLocation;Badeggerweg 4;1478/11;8501;Lieboch;Lieboch;60629;1;Residential +25025420;FTTxCustomerLocation;Badeggerweg 5;1478/9;8501;Lieboch;Lieboch;60629;1;Residential +25025421;FTTxCustomerLocation;Badeggerweg 7;1478/14;8501;Lieboch;Lieboch;60629;1;Residential +25025422;FTTxCustomerLocation;Am Bach 1;1474/44;8501;Lieboch;Lieboch;60629;1;Residential +25025423;FTTxCustomerLocation;Am Bach 2;1474/41;8501;Lieboch;Lieboch;60629;1;Residential +25025424;FTTxCustomerLocation;Am Bach 3;1474/44;8501;Lieboch;Lieboch;60629;1;Residential +25025425;FTTxCustomerLocation;Am Bach 4;1474/39;8501;Lieboch;Lieboch;60629;1;Residential +25025426;FTTxCustomerLocation;Am Bach 5;1474/44;8501;Lieboch;Lieboch;60629;1;Residential +25025427;FTTxCustomerLocation;Am Bach 6;1474/38;8501;Lieboch;Lieboch;60629;1;Residential +25025428;FTTxCustomerLocation;Am Bach 7;1474/44;8501;Lieboch;Lieboch;60629;1;Residential +25025429;FTTxCustomerLocation;Am Bach 8;1474/36;8501;Lieboch;Lieboch;60629;1;Residential +25025430;FTTxCustomerLocation;Am Bach 9;1474/44;8501;Lieboch;Lieboch;60629;1;Residential +25025431;FTTxCustomerLocation;Am Bach 10;1474/35;8501;Lieboch;Lieboch;60629;1;Residential +25025432;FTTxCustomerLocation;Am Bach 11;1474/44;8501;Lieboch;Lieboch;60629;1;Residential +25025433;FTTxCustomerLocation;Am Bach 13;1474/5;8501;Lieboch;Lieboch;60629;1;Residential +25025434;FTTxCustomerLocation;Am Bach 15;1474/5;8501;Lieboch;Lieboch;60629;1;Residential +25025435;FTTxCustomerLocation;Am Bach 17;1474/5;8501;Lieboch;Lieboch;60629;1;Residential +25025436;FTTxCustomerLocation;Am Bach 19;1474/5;8501;Lieboch;Lieboch;60629;1;Residential +25025437;FTTxCustomerLocation;Am Bach 21;1474/5;8501;Lieboch;Lieboch;60629;1;Residential +25025438;FTTxCustomerLocation;Am Bach 30;1474/5;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025441;FTTxCustomerLocation;Kohlgraben 1;1241/3;8501;Lieboch;Lieboch;60629;1;Residential +25025442;FTTxCustomerLocation;Kohlgraben 2;1242/1;8501;Lieboch;Lieboch;60629;1;Residential +25025443;FTTxCustomerLocation;Horvathweg 2;1215/3;8501;Lieboch;Lieboch;60629;1;Residential +25025444;FTTxCustomerLocation;Horvathweg 4;1215/1;8501;Lieboch;Lieboch;60629;1;Residential +25025445;FTTxCustomerLocation;Horvathweg 5;1221/8;8501;Lieboch;Lieboch;60629;1;Residential +25025446;FTTxCustomerLocation;Lusengasse 4a;2245;8501;Lieboch;Lieboch;60629;1;Residential +25025447;FTTxCustomerLocation;Birkenstraße 10a;2104/4;8501;Lieboch;Lieboch;60629;1;Residential +25025448;FTTxCustomerLocation;Floraweg 7;604/1;8501;Lieboch;Lieboch;60629;1;Residential +25025449;FTTxCustomerLocation;Birkenstraße 19e;2126/7;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025450;FTTxCustomerLocation;Birkenstraße 19d;2126/4;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025451;FTTxCustomerLocation;Birkenstraße 13a;2128/4;8501;Lieboch;Lieboch;60629;1;Residential +25025452;FTTxCustomerLocation;Weidengasse 8;563/4;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025453;FTTxCustomerLocation;Hitzendorferstraße 74;1585/13;8501;Lieboch;Lieboch;60629;1;Residential +25025454;FTTxCustomerLocation;Grabenstraße 2;545/2;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025455;FTTxCustomerLocation;Grabenstraße 4;545/2;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25025456;FTTxCustomerLocation;Grabenstraße 6;545/2;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25025457;FTTxCustomerLocation;Badeggerweg 8;1478/1;8501;Lieboch;Lieboch;60629;1;Residential +25025458;FTTxCustomerLocation;Ringweg 23a;575/3;8501;Lieboch;Lieboch;60629;1;Residential +25025459;FTTxCustomerLocation;Hochstraße 12;575/12;8501;Lieboch;Lieboch;60629;1;Residential +25025460;FTTxCustomerLocation;Hügelweg 20;1311/2;8501;Lieboch;Lieboch;60629;1;Residential +25025461;FTTxCustomerLocation;Bachfeldgasse 39;1311/3;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025462;FTTxCustomerLocation;Flurgasse 5a;2240;8501;Lieboch;Lieboch;60629;7;Multiple dwellings +25025463;FTTxCustomerLocation;Packer Straße 72;1079/3;8501;Lieboch;Lieboch;60629;1;Residential +25025464;FTTxCustomerLocation;Packer Straße 72a;1079/4;8501;Lieboch;Lieboch;60629;1;Residential +25025465;FTTxCustomerLocation;Höhenweg 7a;.556/2;8501;Lieboch;Lieboch;60629;1;Residential +25025466;FTTxCustomerLocation;Bachfeldgasse 45;493/16;8501;Lieboch;Lieboch;60629;1;Residential +25025467;FTTxCustomerLocation;Blumengasse 14a;2045/2;8501;Lieboch;Lieboch;60629;1;Residential +25025468;FTTxCustomerLocation;Höhenweg 2;.741/2;8501;Lieboch;Lieboch;60629;1;Residential +25025469;FTTxCustomerLocation;Ringweg 6;0.67;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025470;FTTxCustomerLocation;Weidengasse 20;414/2;8501;Lieboch;Lieboch;60629;3;Multiple dwellings +25025471;FTTxCustomerLocation;Weidengasse 9;.775/2;8501;Lieboch;Lieboch;60629;1;Residential +25025472;FTTxCustomerLocation;Bergstraße 9;1519;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025473;FTTxCustomerLocation;Bergstraße 9;1519;8501;Lieboch;Lieboch;60629;1;Residential +25025474;FTTxCustomerLocation;Packer Straße 173;2085/1;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25025475;FTTxCustomerLocation;Getreideweg 21;915/21;8501;Lieboch;Lieboch;60629;1;Residential +25025476;FTTxCustomerLocation;Lindengasse 6c;1071/7;8501;Lieboch;Lieboch;60629;1;Residential +25025477;FTTxCustomerLocation;Am Bach 21a;1474/44;8501;Lieboch;Lieboch;60629;1;Residential +25025478;FTTxCustomerLocation;Birkenstraße 21a;2126/2;8501;Lieboch;Lieboch;60629;1;Residential +25025479;FTTxCustomerLocation;Am Bach 22;1474/5;8501;Lieboch;Lieboch;60629;1;Residential +25025480;FTTxCustomerLocation;Am Bach 23;1474/5;8501;Lieboch;Lieboch;60629;1;Residential +25025481;FTTxCustomerLocation;Am Bach 24;1474/5;8501;Lieboch;Lieboch;60629;1;Residential +25025482;FTTxCustomerLocation;Am Bach 25;1474/5;8501;Lieboch;Lieboch;60629;1;Residential +25025483;FTTxCustomerLocation;Am Bach 26;1474/5;8501;Lieboch;Lieboch;60629;1;Residential +25025484;FTTxCustomerLocation;Am Bach 27;1474/5;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025485;FTTxCustomerLocation;Am Bach 16;1474/5;8501;Lieboch;Lieboch;60629;1;Residential +25025486;FTTxCustomerLocation;Am Bach 18;1474/5;8501;Lieboch;Lieboch;60629;1;Residential +25025487;FTTxCustomerLocation;Am Bach 20;1474/5;8501;Lieboch;Lieboch;60629;1;Residential +25025488;FTTxCustomerLocation;Am Bach 28;1474/5;8501;Lieboch;Lieboch;60629;1;Residential +25025489;FTTxCustomerLocation;Am Bach 29;1474/5;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025490;FTTxCustomerLocation;Packer Straße 207;2062/4;8501;Lieboch;Lieboch;60629;1;Residential +25025491;FTTxCustomerLocation;Packer Straße 186;556/2;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025492;FTTxCustomerLocation;Packer Straße 70a;.117/2;8501;Lieboch;Lieboch;60629;1;Residential +25025493;FTTxCustomerLocation;Packer Straße 90a;0.21;8501;Lieboch;Lieboch;60629;1;Residential +25025494;FTTxCustomerLocation;Birkenstraße 15;2128/1;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025495;FTTxCustomerLocation;Birkenstraße 29;2124;8501;Lieboch;Lieboch;60629;1;Residential +25025496;FTTxCustomerLocation;Grünegasse 6;1106/1;8501;Lieboch;Lieboch;60629;1;Residential +25025497;FTTxCustomerLocation;Jägerweg 6;534/1;8501;Lieboch;Lieboch;60629;1;Residential +25025498;FTTxCustomerLocation;Lindengasse 4a;1071/10;8501;Lieboch;Lieboch;60629;1;Residential +25025499;FTTxCustomerLocation;Lindengasse 4c;1071/12;8501;Lieboch;Lieboch;60629;1;Residential +25025500;FTTxCustomerLocation;Lindengasse 4d;1071/13;8501;Lieboch;Lieboch;60629;1;Residential +25025501;FTTxCustomerLocation;Lindengasse 4e;1071/14;8501;Lieboch;Lieboch;60629;1;Residential +25025502;FTTxCustomerLocation;Lindengasse 4f;1071/15;8501;Lieboch;Lieboch;60629;1;Residential +25025503;FTTxCustomerLocation;Lindengasse 6a;1071/5;8501;Lieboch;Lieboch;60629;1;Residential +25025504;FTTxCustomerLocation;Lindengasse 6b;1071/4;8501;Lieboch;Lieboch;60629;1;Residential +25025505;FTTxCustomerLocation;Lindengasse 6e;1071/8;8501;Lieboch;Lieboch;60629;1;Residential +25025506;FTTxCustomerLocation;Lindengasse 6f;1071/9;8501;Lieboch;Lieboch;60629;1;Residential +25025507;FTTxCustomerLocation;Feldriegelstraße 29b;1269/5;8501;Lieboch;Lieboch;60629;1;Residential +25025508;FTTxCustomerLocation;Feldriegelstraße 54a;1320/4;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025509;FTTxCustomerLocation;Am Bach 12;1474/5;8501;Lieboch;Lieboch;60629;1;Residential +25025510;FTTxCustomerLocation;Am Bach 14;1474/5;8501;Lieboch;Lieboch;60629;1;Residential +25025511;FTTxCustomerLocation;Packer Straße 119a;0.872;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025512;FTTxCustomerLocation;Blumengasse 12c;2041/1;8501;Lieboch;Lieboch;60629;1;Residential +25025513;FTTxCustomerLocation;Blumengasse 19;2022;8501;Lieboch;Lieboch;60629;1;Residential +25025514;FTTxCustomerLocation;Packer Straße 169a;2087/2;8501;Lieboch;Lieboch;60629;1;Residential +25025515;FTTxCustomerLocation;Einödstraße 18;922/1;8501;Lieboch;Lieboch;60629;1;Residential +25025516;FTTxCustomerLocation;Einödstraße 18a;923/5;8501;Lieboch;Lieboch;60629;1;Residential +25025517;FTTxCustomerLocation;Feldstraße 2a;0.873;8501;Lieboch;Lieboch;60629;1;Residential +25025518;FTTxCustomerLocation;Wassergasse 2;899/4;8501;Lieboch;Lieboch;60629;1;Residential +25025519;FTTxCustomerLocation;Weidengasse 19;548/3;8501;Lieboch;Lieboch;60629;1;Residential +25025520;FTTxCustomerLocation;Weidengasse 19a;548/3;8501;Lieboch;Lieboch;60629;1;Residential +25025521;FTTxCustomerLocation;Weidengasse 21a;548/3;8501;Lieboch;Lieboch;60629;1;Residential +25025522;FTTxCustomerLocation;Weidengasse 21b;548/3;8501;Lieboch;Lieboch;60629;1;Residential +25025523;FTTxCustomerLocation;Wiesengasse 5;1071/2;8501;Lieboch;Lieboch;60629;1;Residential +25025524;FTTxCustomerLocation;Dorfstraße 5a;.767/1;8501;Lieboch;Lieboch;60629;1;Residential +25025525;FTTxCustomerLocation;Heimgasse 9a;1362/4;8501;Lieboch;Lieboch;60629;1;Residential +25025526;FTTxCustomerLocation;Ringweg 9;528;8501;Lieboch;Lieboch;60629;1;Residential +25025527;FTTxCustomerLocation;Weizenweg 9;924/5;8501;Lieboch;Lieboch;60629;1;Residential +25025528;FTTxCustomerLocation;Grillweg 11;1353/9;8501;Lieboch;Lieboch;60629;1;Residential +25025529;FTTxCustomerLocation;Fasangasse 11;1474/47;8501;Lieboch;Lieboch;60629;1;Residential +25025530;FTTxCustomerLocation;Rehweg 15;1623/24;8501;Lieboch;Lieboch;60629;1;Residential +25025531;FTTxCustomerLocation;Hochstraße 23;413/2;8501;Lieboch;Lieboch;60629;1;Residential +25025532;FTTxCustomerLocation;Siedlungsstraße 51;1623/21;8501;Lieboch;Lieboch;60629;1;Residential +25025533;FTTxCustomerLocation;Siedlungsstraße 53;1623/27;8501;Lieboch;Lieboch;60629;1;Residential +25025534;FTTxCustomerLocation;Getreideweg 2;915/14;8501;Lieboch;Lieboch;60629;1;Residential +25025535;FTTxCustomerLocation;Getreideweg 3;915/26;8501;Lieboch;Lieboch;60629;1;Residential +25025536;FTTxCustomerLocation;Getreideweg 5;915/26;8501;Lieboch;Lieboch;60629;1;Residential +25025537;FTTxCustomerLocation;Getreideweg 6;915/15;8501;Lieboch;Lieboch;60629;1;Residential +25025538;FTTxCustomerLocation;Getreideweg 11;915/23;8501;Lieboch;Lieboch;60629;1;Residential +25025539;FTTxCustomerLocation;Getreideweg 14;915/17;8501;Lieboch;Lieboch;60629;1;Residential +25025540;FTTxCustomerLocation;Getreideweg 16;915/17;8501;Lieboch;Lieboch;60629;1;Residential +25025541;FTTxCustomerLocation;Getreideweg 18;915/13;8501;Lieboch;Lieboch;60629;1;Residential +25025542;FTTxCustomerLocation;Getreideweg 19;915/21;8501;Lieboch;Lieboch;60629;1;Residential +25025543;FTTxCustomerLocation;Getreideweg 22;915/11;8501;Lieboch;Lieboch;60629;1;Residential +25025544;FTTxCustomerLocation;Getreideweg 23;915/20;8501;Lieboch;Lieboch;60629;1;Residential +25025545;FTTxCustomerLocation;Getreideweg 25;915/20;8501;Lieboch;Lieboch;60629;1;Residential +25025546;FTTxCustomerLocation;Getreideweg 27;915/19;8501;Lieboch;Lieboch;60629;1;Residential +25025547;FTTxCustomerLocation;Getreideweg 31;915/18;8501;Lieboch;Lieboch;60629;1;Residential +25025548;FTTxCustomerLocation;Getreideweg 33;915/18;8501;Lieboch;Lieboch;60629;1;Residential +25025549;FTTxCustomerLocation;Forellenweg 3;1474/30;8501;Lieboch;Lieboch;60629;1;Residential +25025550;FTTxCustomerLocation;Weidengasse 21;548/3;8501;Lieboch;Lieboch;60629;1;Residential +25025551;FTTxCustomerLocation;Florianweg 3a;1479/8;8501;Lieboch;Lieboch;60629;1;Residential +25025553;FTTxCustomerLocation;Packer Straße 165a;2088/1;8501;Lieboch;Lieboch;60629;1;Company +25025554;FTTxCustomerLocation;Packer Straße 107a;1188/7;8501;Lieboch;Lieboch;60629;1;Company +25025555;FTTxCustomerLocation;Weidengasse 19b;548/3;8501;Lieboch;Lieboch;60629;1;Residential +25025556;FTTxCustomerLocation;Hangweg 3;599;8501;Lieboch;Lieboch;60629;1;Residential +25025557;FTTxCustomerLocation;Villengasse 14;1023/12;8501;Lieboch;Lieboch;60629;1;Residential +25025558;FTTxCustomerLocation;Kernstockgasse 26;1799/28;8501;Lieboch;Lieboch;60629;1;Residential +25025559;FTTxCustomerLocation;Kohutweg 8;1130/3;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025560;FTTxCustomerLocation;Kohutweg 12;1130/3;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025561;FTTxCustomerLocation;Kohutweg 11;1130/2;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025562;FTTxCustomerLocation;Kohutweg 10;1130/2;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025563;FTTxCustomerLocation;Kohutweg 9;1130/2;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025564;FTTxCustomerLocation;Quergasse 3;1046/2;8501;Lieboch;Lieboch;60629;1;Residential +25025565;FTTxCustomerLocation;Packer Straße 140;1263;8501;Lieboch;Lieboch;60629;1;Residential +25025566;FTTxCustomerLocation;Grillweg 7;1353/11;8501;Lieboch;Lieboch;60629;1;Residential +25025567;FTTxCustomerLocation;Feldriegelstraße 69;513/1;8501;Lieboch;Lieboch;60629;1;Residential +25025568;FTTxCustomerLocation;Einödstraße 19;1027/11;8501;Lieboch;Lieboch;60629;3;Multiple dwellings +25025569;FTTxCustomerLocation;Packer Straße 19;1635/32;8501;Lieboch;Lieboch;60629;1;Residential +25025570;FTTxCustomerLocation;Höhenweg 15;1513/20;8501;Lieboch;Lieboch;60629;1;Residential +25025571;FTTxCustomerLocation;Erzherzog Johann-Straße 8;1816/119;8501;Lieboch;Lieboch;60629;1;Residential +25025572;FTTxCustomerLocation;Jägerweg 7;439/4;8501;Lieboch;Lieboch;60629;1;Residential +25025573;FTTxCustomerLocation;Erzherzog Johann-Straße 10;1816/120;8501;Lieboch;Lieboch;60629;1;Residential +25025574;FTTxCustomerLocation;Erzherzog Johann-Straße 4;1816/117;8501;Lieboch;Lieboch;60629;1;Residential +25025575;FTTxCustomerLocation;Bienengasse 24b;1816/127;8501;Lieboch;Lieboch;60629;1;Residential +25025576;FTTxCustomerLocation;Bienengasse 24a;1816/76;8501;Lieboch;Lieboch;60629;1;Residential +25025577;FTTxCustomerLocation;Birkenstraße 13b;2128/6;8501;Lieboch;Lieboch;60629;1;Residential +25025578;FTTxCustomerLocation;Erzherzog Johann-Straße 14;1816/122;8501;Lieboch;Lieboch;60629;1;Residential +25025579;FTTxCustomerLocation;Forstgasse 23;1924/2;8501;Lieboch;Lieboch;60629;1;Residential +25025580;FTTxCustomerLocation;Zweiggasse 6;1023/7;8501;Lieboch;Lieboch;60629;1;Residential +25025581;FTTxCustomerLocation;Kernstockgasse 13;1793/7;8501;Lieboch;Lieboch;60629;1;Residential +25025582;FTTxCustomerLocation;Nadeggerweg 4b;2089/3;8501;Lieboch;Lieboch;60629;1;Residential +25025583;FTTxCustomerLocation;Am Mühlbach 9;1150/2;8501;Lieboch;Lieboch;60629;7;Multiple dwellings +25025584;FTTxCustomerLocation;Am Mühlbach 11;1150/2;8501;Lieboch;Lieboch;60629;8;Multiple dwellings +25025585;FTTxCustomerLocation;Am Mühlbach 13;1150/2;8501;Lieboch;Lieboch;60629;11;Multiple dwellings +25025586;FTTxCustomerLocation;Bachfeldgasse 22;1341/5;8501;Lieboch;Lieboch;60629;1;Residential +25025587;FTTxCustomerLocation;Badeggerweg 12;1478/19;8501;Lieboch;Lieboch;60629;1;Residential +25025588;FTTxCustomerLocation;Blumengasse 12b;2041/2;8501;Lieboch;Lieboch;60629;1;Residential +25025589;FTTxCustomerLocation;Erzherzog Johann-Straße 16;1816/123;8501;Lieboch;Lieboch;60629;1;Residential +25025590;FTTxCustomerLocation;Grünegasse 3;1100/1;8501;Lieboch;Lieboch;60629;1;Residential +25025591;FTTxCustomerLocation;Hitzendorferstraße 76;1585/14;8501;Lieboch;Lieboch;60629;1;Residential +25025592;FTTxCustomerLocation;Kohutweg 1;1155/3;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025593;FTTxCustomerLocation;Kohutweg 2;1155/5;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025594;FTTxCustomerLocation;Kohutweg 3;1155/3;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025595;FTTxCustomerLocation;Kohutweg 4;1155/5;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025596;FTTxCustomerLocation;Kohutweg 5;1155/3;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025597;FTTxCustomerLocation;Kohutweg 6;1155/5;8501;Lieboch;Lieboch;60629;5;Multiple dwellings +25025598;FTTxCustomerLocation;Kohutweg 7;1155/3;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025599;FTTxCustomerLocation;Packer Straße 109a;1188/1;8501;Lieboch;Lieboch;60629;1;Residential +25025600;FTTxCustomerLocation;Packer Straße 200a;548/4;8501;Lieboch;Lieboch;60629;1;Residential +25025601;FTTxCustomerLocation;Packer Straße 200b;548/4;8501;Lieboch;Lieboch;60629;1;Residential +25025602;FTTxCustomerLocation;Packer Straße 202;548/4;8501;Lieboch;Lieboch;60629;1;Residential +25025603;FTTxCustomerLocation;Packer Straße 202a;548/4;8501;Lieboch;Lieboch;60629;1;Residential +25025604;FTTxCustomerLocation;Ringweg 21;576/4;8501;Lieboch;Lieboch;60629;1;Residential +25025605;FTTxCustomerLocation;Ringweg 21b;576/4;8501;Lieboch;Lieboch;60629;1;Residential +25025606;FTTxCustomerLocation;Ringweg 21c;576/4;8501;Lieboch;Lieboch;60629;1;Residential +25025607;FTTxCustomerLocation;Wassergasse 2a;899/2;8501;Lieboch;Lieboch;60629;1;Residential +25025608;FTTxCustomerLocation;Wassergasse 3a;.763/2;8501;Lieboch;Lieboch;60629;1;Residential +25025609;FTTxCustomerLocation;Flurgasse 22c;905/2;8501;Lieboch;Lieboch;60629;1;Residential +25025610;FTTxCustomerLocation;Flurgasse 22f;.578/11;8501;Lieboch;Lieboch;60629;1;Residential +25025611;FTTxCustomerLocation;Flurgasse 24f;.578/3;8501;Lieboch;Lieboch;60629;1;Residential +25025612;FTTxCustomerLocation;Flurgasse 32a;908/9;8501;Lieboch;Lieboch;60629;1;Residential +25025613;FTTxCustomerLocation;Getreideweg 4;915/14;8501;Lieboch;Lieboch;60629;1;Residential +25025614;FTTxCustomerLocation;Getreideweg 7;915/24;8501;Lieboch;Lieboch;60629;1;Residential +25025615;FTTxCustomerLocation;Getreideweg 8;915/15;8501;Lieboch;Lieboch;60629;1;Residential +25025616;FTTxCustomerLocation;Getreideweg 9;915/24;8501;Lieboch;Lieboch;60629;1;Residential +25025617;FTTxCustomerLocation;Getreideweg 10;915/16;8501;Lieboch;Lieboch;60629;1;Residential +25025618;FTTxCustomerLocation;Getreideweg 12;915/16;8501;Lieboch;Lieboch;60629;1;Residential +25025619;FTTxCustomerLocation;Getreideweg 13;915/23;8501;Lieboch;Lieboch;60629;1;Residential +25025620;FTTxCustomerLocation;Getreideweg 15;915/22;8501;Lieboch;Lieboch;60629;1;Residential +25025621;FTTxCustomerLocation;Getreideweg 17;915/22;8501;Lieboch;Lieboch;60629;1;Residential +25025622;FTTxCustomerLocation;Getreideweg 29;915/19;8501;Lieboch;Lieboch;60629;1;Residential +25025623;FTTxCustomerLocation;Erzherzog Johann-Straße 2;1816/116;8501;Lieboch;Lieboch;60629;1;Residential +25025624;FTTxCustomerLocation;Roseggergasse 43;1816/9;8501;Lieboch;Lieboch;60629;1;Residential +25025625;FTTxCustomerLocation;Birkenstraße 49;2091/2;8501;Lieboch;Lieboch;60629;1;Residential +25025626;FTTxCustomerLocation;Hügelweg 16;1311/5;8501;Lieboch;Lieboch;60629;1;Residential +25025627;FTTxCustomerLocation;Ringweg 21a;576/4;8501;Lieboch;Lieboch;60629;1;Residential +25025628;FTTxCustomerLocation;Packer Straße 69;1054/2;8501;Lieboch;Lieboch;60629;1;Residential +25025629;FTTxCustomerLocation;Grillweg 8;1353/7;8501;Lieboch;Lieboch;60629;1;Residential +25025630;FTTxCustomerLocation;Badeggerweg 6;1478/10;8501;Lieboch;Lieboch;60629;1;Residential +25025631;FTTxCustomerLocation;Hochstraße 65;445/4;8501;Lieboch;Lieboch;60629;1;Residential +25025632;FTTxCustomerLocation;Birkenstraße 21b;2126/1;8501;Lieboch;Lieboch;60629;1;Residential +25025633;FTTxCustomerLocation;Jägerweg 7a;439/12;8501;Lieboch;Lieboch;60629;1;Residential +25025634;FTTxCustomerLocation;Seilergasse 8;1361/9;8501;Lieboch;Lieboch;60629;1;Residential +25025635;FTTxCustomerLocation;Badeggerweg 9;1478/15;8501;Lieboch;Lieboch;60629;1;Residential +25025636;FTTxCustomerLocation;Erzherzog Johann-Straße 6;1816/118;8501;Lieboch;Lieboch;60629;1;Residential +25025637;FTTxCustomerLocation;Weidengasse 26;419/7;8501;Lieboch;Lieboch;60629;1;Residential +25025638;FTTxCustomerLocation;Weidengasse 28;419/5;8501;Lieboch;Lieboch;60629;1;Residential +25025639;FTTxCustomerLocation;Weidengasse 30;419/5;8501;Lieboch;Lieboch;60629;1;Residential +25025640;FTTxCustomerLocation;Weidengasse 37;419/8;8501;Lieboch;Lieboch;60629;8;Multiple dwellings +25025641;FTTxCustomerLocation;Bachfeldgasse 7;1358/4;8501;Lieboch;Lieboch;60629;1;Residential +25025642;FTTxCustomerLocation;Höhenweg 18;1513/1;8501;Lieboch;Lieboch;60629;1;Residential +25025643;FTTxCustomerLocation;Höhenweg 12a;1516/2;8501;Lieboch;Lieboch;60629;1;Residential +25025644;FTTxCustomerLocation;Feldriegelstraße 17a;1239/5;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025645;FTTxCustomerLocation;Feldriegelstraße 17b;1239/5;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025646;FTTxCustomerLocation;Feldriegelstraße 17c;1239/3;8501;Lieboch;Lieboch;60629;1;Residential +25025647;FTTxCustomerLocation;Feldriegelstraße 17d;1239/3;8501;Lieboch;Lieboch;60629;1;Residential +25025648;FTTxCustomerLocation;Flurgasse 24b;.578/4;8501;Lieboch;Lieboch;60629;1;Residential +25025649;FTTxCustomerLocation;Josef-Hösele-Platz 1 Feuerwehrgebäude;0.768;8501;Lieboch;Lieboch;60629;1;Other +25025650;FTTxCustomerLocation;Josef-Mihalits-Straße 16;1242/7;8501;Lieboch;Lieboch;60629;1;Residential +25025651;FTTxCustomerLocation;Siedlungsstraße 26;1627/14;8501;Lieboch;Lieboch;60629;1;Residential +25025652;FTTxCustomerLocation;Am Mühlbach 7;1150/7;8501;Lieboch;Lieboch;60629;10;Multiple dwellings +25025653;FTTxCustomerLocation;Am Mühlbach 7a;1150/7;8501;Lieboch;Lieboch;60629;10;Multiple dwellings +25025654;FTTxCustomerLocation;Jägerweg 9;439/11;8501;Lieboch;Lieboch;60629;1;Residential +25025655;FTTxCustomerLocation;Jägerweg 9a;439/6;8501;Lieboch;Lieboch;60629;1;Residential +25025656;FTTxCustomerLocation;Feldriegelstraße 63;498;8501;Lieboch;Lieboch;60629;1;Residential +25025657;FTTxCustomerLocation;Hochstraße 25;414/1;8501;Lieboch;Lieboch;60629;1;Residential +25025658;FTTxCustomerLocation;Rebhuhnweg 7a;1474/10;8501;Lieboch;Lieboch;60629;1;Residential +25025659;FTTxCustomerLocation;Feldriegelstraße 9a;1238/5;8501;Lieboch;Lieboch;60629;1;Residential +25025660;FTTxCustomerLocation;Flurgasse 24a;.578/10;8501;Lieboch;Lieboch;60629;1;Residential +25025661;FTTxCustomerLocation;Flurgasse 24c;.578/9;8501;Lieboch;Lieboch;60629;1;Residential +25025662;FTTxCustomerLocation;Nadeggerweg 4;2089/1;8501;Lieboch;Lieboch;60629;1;Residential +25025663;FTTxCustomerLocation;Bachfeldgasse 41a;1299/6;8501;Lieboch;Lieboch;60629;1;Residential +25025664;FTTxCustomerLocation;Feldriegelstraße 47;1286/2;8501;Lieboch;Lieboch;60629;1;Residential +25025665;FTTxCustomerLocation;Jägerweg 28c;517/1;8501;Lieboch;Lieboch;60629;1;Residential +25025666;FTTxCustomerLocation;Feldriegelstraße 29a;1269/1;8501;Lieboch;Lieboch;60629;1;Residential +25025667;FTTxCustomerLocation;Villengasse 12;.614/4;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25025668;FTTxCustomerLocation;Villengasse 12a;.614/4;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25025669;FTTxCustomerLocation;Hangweg 7;579/2;8501;Lieboch;Lieboch;60629;2;Residential +25025670;FTTxCustomerLocation;Augasse 7;1474/6;8501;Lieboch;Lieboch;60629;1;Residential +25025671;FTTxCustomerLocation;Kohlgraben 2a;1242/6;8501;Lieboch;Lieboch;60629;1;Residential +25025672;FTTxCustomerLocation;Kohlgraben 2b;1242/6;8501;Lieboch;Lieboch;60629;1;Residential +25025673;FTTxCustomerLocation;Flurgasse 22g;905/3;8501;Lieboch;Lieboch;60629;1;Residential +25025674;FTTxCustomerLocation;Neugasse 3a;.641/2;8501;Lieboch;Lieboch;60629;1;Residential +25025675;FTTxCustomerLocation;Jägerweg 28b;517/2;8501;Lieboch;Lieboch;60629;1;Residential +25025676;FTTxCustomerLocation;Grabenstraße 1;542/2;8501;Lieboch;Lieboch;60629;1;Residential +25025677;FTTxCustomerLocation;Neugasse 1a;.646/2;8501;Lieboch;Lieboch;60629;1;Residential +25025678;FTTxCustomerLocation;Jägerweg 30a;513/3;8501;Lieboch;Lieboch;60629;1;Residential +25025679;FTTxCustomerLocation;Kurze Gasse 1a;.782/2;8501;Lieboch;Lieboch;60629;1;Residential +25025680;FTTxCustomerLocation;Hangweg 16;580/8;8501;Lieboch;Lieboch;60629;1;Residential +25025681;FTTxCustomerLocation;Hangweg 18;580/9;8501;Lieboch;Lieboch;60629;1;Residential +25025682;FTTxCustomerLocation;Dorfstraße 20a;1221/7;8501;Lieboch;Lieboch;60629;1;Residential +25025683;FTTxCustomerLocation;Packer Straße 79;.120/1;8501;Lieboch;Lieboch;60629;1;Residential +25025684;FTTxCustomerLocation;Hangweg 8;595/4;8501;Lieboch;Lieboch;60629;1;Residential +25025685;FTTxCustomerLocation;Birkenstraße 15b;2128/5;8501;Lieboch;Lieboch;60629;1;Residential +25025686;FTTxCustomerLocation;Höhenweg 19a;1513/5;8501;Lieboch;Lieboch;60629;1;Residential +25025687;FTTxCustomerLocation;Höhenweg 16a;1513/22;8501;Lieboch;Lieboch;60629;1;Residential +25025688;FTTxCustomerLocation;Höhenweg 16b;1513/23;8501;Lieboch;Lieboch;60629;1;Residential +25025689;FTTxCustomerLocation;Höhenweg 30;.733/2;8501;Lieboch;Lieboch;60629;1;Residential +25025690;FTTxCustomerLocation;Horvathweg 3;1221/6;8501;Lieboch;Lieboch;60629;1;Residential +25025691;FTTxCustomerLocation;Dorfstraße 12a;0.92;8501;Lieboch;Lieboch;60629;1;Residential +25025692;FTTxCustomerLocation;Hitzendorferstraße 66;1478/2;8501;Lieboch;Lieboch;60629;1;Residential +25025693;FTTxCustomerLocation;Florianweg 2;1478/26;8501;Lieboch;Lieboch;60629;1;Residential +25025694;FTTxCustomerLocation;Höhenweg 16;1513/11;8501;Lieboch;Lieboch;60629;1;Residential +25025695;FTTxCustomerLocation;Bergstraße 21a;0.495;8501;Lieboch;Lieboch;60629;1;Residential +25025696;FTTxCustomerLocation;Feldstraße 6;2111/1;8501;Lieboch;Lieboch;60629;8;Multiple dwellings +25025697;FTTxCustomerLocation;Bachfeldgasse 33;1328/2;8501;Lieboch;Lieboch;60629;1;Residential +25025698;FTTxCustomerLocation;Horvathweg 5a;1221/8;8501;Lieboch;Lieboch;60629;1;Residential +25025699;FTTxCustomerLocation;Flurgasse 24d;.578/2;8501;Lieboch;Lieboch;60629;1;Residential +25025700;FTTxCustomerLocation;Bienengasse 24c;1816/129;8501;Lieboch;Lieboch;60629;1;Residential +25025701;FTTxCustomerLocation;Nadeggerweg 4a;2089/2;8501;Lieboch;Lieboch;60629;1;Residential +25025702;FTTxCustomerLocation;Josef-Mihalits-Straße 17;1260/11;8501;Lieboch;Lieboch;60629;1;Residential +25025703;FTTxCustomerLocation;Grenzgasse 4;1477/5;8501;Lieboch;Lieboch;60629;1;Residential +25025704;FTTxCustomerLocation;Dorfstraße 28a;1225/2;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25025705;FTTxCustomerLocation;Dorfstraße 28b;1225/2;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25025706;FTTxCustomerLocation;Jägerweg 23;443/7;8501;Lieboch;Lieboch;60629;1;Residential +25025707;FTTxCustomerLocation;Wiesengasse 10;1537/6;8501;Lieboch;Lieboch;60629;1;Residential +25025708;FTTxCustomerLocation;Flurgasse 22d;.578/13;8501;Lieboch;Lieboch;60629;1;Residential +25025709;FTTxCustomerLocation;Hügelweg 13;1299/4;8501;Lieboch;Lieboch;60629;1;Residential +25025710;FTTxCustomerLocation;Birkenstraße 10;2106;8501;Lieboch;Lieboch;60629;1;Residential +25025711;FTTxCustomerLocation;Marktplatz 2;.75/1;8501;Lieboch;Lieboch;60629;5;Public +25025712;FTTxCustomerLocation;Marktplatz 3;880/1;8501;Lieboch;Lieboch;60629;6;Public +25025713;FTTxCustomerLocation;Höhenweg 18a;1513/25;8501;Lieboch;Lieboch;60629;1;Residential +25025714;FTTxCustomerLocation;Packer Straße 141a;2100;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25025715;FTTxCustomerLocation;Packer Straße 141b;2100;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25025716;FTTxCustomerLocation;Packer Straße 141c;2100;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25025717;FTTxCustomerLocation;Kleegasse 5;1199/5;8501;Lieboch;Lieboch;60629;10;Multiple dwellings +25025718;FTTxCustomerLocation;Florianweg 4;1479/3;8501;Lieboch;Lieboch;60629;1;Residential +25025719;FTTxCustomerLocation;Pfarrgasse 18a;1179/3;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25025720;FTTxCustomerLocation;Pfarrgasse 18b;1179/2;8501;Lieboch;Lieboch;60629;15;Multiple dwellings +25025721;FTTxCustomerLocation;Flurgasse 22e;.578/12;8501;Lieboch;Lieboch;60629;1;Residential +25025722;FTTxCustomerLocation;Am Weiher 15;1821/26;8501;Lieboch;Lieboch;60629;1;Residential +25025723;FTTxCustomerLocation;Pfarrgasse 16;1179/4;8501;Lieboch;Lieboch;60629;3;Multiple dwellings +25025724;FTTxCustomerLocation;Pfarrgasse 14;1179/1;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025725;FTTxCustomerLocation;Badeggerweg 10;1478/17;8501;Lieboch;Lieboch;60629;1;Residential +25025726;FTTxCustomerLocation;Flurgasse 22b;905/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025727;FTTxCustomerLocation;Höhenweg 16c;1513/23;8501;Lieboch;Lieboch;60629;1;Residential +25025728;FTTxCustomerLocation;Flurgasse 24e;.578/8;8501;Lieboch;Lieboch;60629;1;Residential +25025729;FTTxCustomerLocation;Florianweg 2a;1479/2;8501;Lieboch;Lieboch;60629;1;Residential +25025730;FTTxCustomerLocation;Packer Straße 61;1061/2;8501;Lieboch;Lieboch;60629;16;Multiple dwellings +25025731;FTTxCustomerLocation;Josef-Mihalits-Straße 8a;1247/2;8501;Lieboch;Lieboch;60629;1;Residential +25025732;FTTxCustomerLocation;Hitzendorferstraße 57;1474/77;8501;Lieboch;Lieboch;60629;1;Residential +25025733;FTTxCustomerLocation;Hitzendorferstraße 59;1474/26;8501;Lieboch;Lieboch;60629;1;Residential +25025734;FTTxCustomerLocation;Birkenstraße 22;2102/1;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025735;FTTxCustomerLocation;Packer Straße 126;.72/2;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025736;FTTxCustomerLocation;Packer Straße 109b;1188/2;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025737;FTTxCustomerLocation;Bachfeldgasse 19;1345/4;8501;Lieboch;Lieboch;60629;1;Residential +25025738;FTTxCustomerLocation;Pfarrgasse 12;1179/4;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25025739;FTTxCustomerLocation;Bergstraße 25a;0.547;8501;Lieboch;Lieboch;60629;1;Residential +25025740;FTTxCustomerLocation;Pfarrgasse 10;1179/1;8501;Lieboch;Lieboch;60629;1;Residential +25025741;FTTxCustomerLocation;Packer Straße 131;2104/15;8501;Lieboch;Lieboch;60629;1;Company +25025742;FTTxCustomerLocation;Am Sonnengrund 2;1474/64;8501;Lieboch;Lieboch;60629;1;Residential +25025743;FTTxCustomerLocation;Am Sonnengrund 2a;1474/64;8501;Lieboch;Lieboch;60629;1;Residential +25025744;FTTxCustomerLocation;Am Sonnengrund 4;1474/64;8501;Lieboch;Lieboch;60629;1;Residential +25025745;FTTxCustomerLocation;Am Sonnengrund 4a;1474/64;8501;Lieboch;Lieboch;60629;1;Residential +25025746;FTTxCustomerLocation;Am Sonnengrund 6;1474/64;8501;Lieboch;Lieboch;60629;1;Residential +25025747;FTTxCustomerLocation;Am Sonnengrund 6a;1474/64;8501;Lieboch;Lieboch;60629;1;Residential +25025748;FTTxCustomerLocation;Am Sonnengrund 8;1474/64;8501;Lieboch;Lieboch;60629;1;Residential +25025749;FTTxCustomerLocation;Am Sonnengrund 8a;1474/64;8501;Lieboch;Lieboch;60629;1;Residential +25025750;FTTxCustomerLocation;Bahnhofstraße 8;0.16;8501;Lieboch;Lieboch;60629;1;Public +25025751;FTTxCustomerLocation;Pfarrgasse 3;1379/1;8501;Lieboch;Lieboch;60629;12;Multiple dwellings +25025752;FTTxCustomerLocation;Flurgasse 4d;882/1;8501;Lieboch;Lieboch;60629;10;Multiple dwellings +25025753;FTTxCustomerLocation;Siedlungsstraße 36;1627/20;8501;Lieboch;Lieboch;60629;1;Residential +25025754;FTTxCustomerLocation;Ulmgasse 6 Wohnhaus;1175;8501;Lieboch;Lieboch;60629;1;Residential +25025755;FTTxCustomerLocation;Höhenweg 23a;1513/6;8501;Lieboch;Lieboch;60629;1;Residential +25025756;FTTxCustomerLocation;Hügelweg 4;1291/1;8501;Lieboch;Lieboch;60629;1;Residential +25025757;FTTxCustomerLocation;Flurgasse 34;910/3;8501;Lieboch;Lieboch;60629;1;Residential +25025758;FTTxCustomerLocation;Flurgasse 26b;908/7;8501;Lieboch;Lieboch;60629;1;Residential +25025759;FTTxCustomerLocation;Villengasse 12b;.614/4;8501;Lieboch;Lieboch;60629;8;Multiple dwellings +25025760;FTTxCustomerLocation;Pfarrgasse 1;1379/5;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025761;FTTxCustomerLocation;Pfarrgasse 20;1179/3;8501;Lieboch;Lieboch;60629;5;Multiple dwellings +25025762;FTTxCustomerLocation;Pfarrgasse 22;1179/3;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025763;FTTxCustomerLocation;Dorfstraße 27;.104/2;8501;Lieboch;Lieboch;60629;1;Residential +25025764;FTTxCustomerLocation;Feldriegelstraße 13;1238/4;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25025765;FTTxCustomerLocation;Wiesengasse 14;1537/5;8501;Lieboch;Lieboch;60629;1;Residential +25025766;FTTxCustomerLocation;Pfarrgasse 5;1379/1;8501;Lieboch;Lieboch;60629;12;Multiple dwellings +25025767;FTTxCustomerLocation;Pfarrgasse 7;1379/6;8501;Lieboch;Lieboch;60629;11;Multiple dwellings +25025768;FTTxCustomerLocation;Bachfeldgasse 17;1345/2;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025769;FTTxCustomerLocation;Siedlungsstraße 38;1627/6;8501;Lieboch;Lieboch;60629;1;Residential +25025770;FTTxCustomerLocation;Wiesengasse 12;1537/4;8501;Lieboch;Lieboch;60629;1;Residential +25025771;FTTxCustomerLocation;Siedlungsstraße 33;1624/20;8501;Lieboch;Lieboch;60629;1;Residential +25025772;FTTxCustomerLocation;Zweiggasse 6a;1023/11;8501;Lieboch;Lieboch;60629;1;Residential +25025773;FTTxCustomerLocation;Jägerweg 20a;525;8501;Lieboch;Lieboch;60629;1;Residential +25025774;FTTxCustomerLocation;Flurgasse 36;910/4;8501;Lieboch;Lieboch;60629;1;Residential +25025775;FTTxCustomerLocation;Flurgasse 4e;882/2;8501;Lieboch;Lieboch;60629;10;Multiple dwellings +25025776;FTTxCustomerLocation;Flurgasse 4f;882/3;8501;Lieboch;Lieboch;60629;11;Multiple dwellings +25025777;FTTxCustomerLocation;Josef-Mihalits-Straße 21;1265/2;8501;Lieboch;Lieboch;60629;5;Multiple dwellings +25025778;FTTxCustomerLocation;Getreideweg 20;915/12;8501;Lieboch;Lieboch;60629;1;Residential +25025779;FTTxCustomerLocation;Siedlungsstraße 38a;1627/6;8501;Lieboch;Lieboch;60629;1;Residential +25025780;FTTxCustomerLocation;Lindengasse 20;1530/2;8501;Lieboch;Lieboch;60629;1;Residential +25025781;FTTxCustomerLocation;Lindengasse 22;1530/2;8501;Lieboch;Lieboch;60629;1;Residential +25025782;FTTxCustomerLocation;Pfarrgasse 24;1179/7;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025783;FTTxCustomerLocation;Pfarrgasse 26;1179/7;8501;Lieboch;Lieboch;60629;5;Multiple dwellings +25025784;FTTxCustomerLocation;Hitzendorferstraße 22;1155/7;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025785;FTTxCustomerLocation;Hitzendorferstraße 24;1155/7;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025786;FTTxCustomerLocation;Hitzendorferstraße 26;1155/7;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25025787;FTTxCustomerLocation;Hitzendorferstraße 28;1155/7;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25025788;FTTxCustomerLocation;Hitzendorferstraße 30;1155/7;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25025789;FTTxCustomerLocation;Hitzendorferstraße 32;1155/7;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25025790;FTTxCustomerLocation;Hitzendorferstraße 34;1155/7;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25025791;FTTxCustomerLocation;Ringweg 11a;575/8;8501;Lieboch;Lieboch;60629;1;Residential +25025792;FTTxCustomerLocation;Birkenstraße 24;2101;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25026338;FTTxCustomerLocation;Packer Straße 341;1934;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026340;FTTxCustomerLocation;Steinerstraße 48;111/10;8501;Lieboch;Lieboch;60629;1;Residential +25026341;FTTxCustomerLocation;Schröttenweg 1;1935/3;8501;Lieboch;Lieboch;60629;1;Residential +25026342;FTTxCustomerLocation;Angergasse 3;2009/1;8501;Lieboch;Lieboch;60629;1;Residential +25026343;FTTxCustomerLocation;Angergasse 5;2008;8501;Lieboch;Lieboch;60629;1;Residential +25026344;FTTxCustomerLocation;Angergasse 7;2006/2;8501;Lieboch;Lieboch;60629;1;Residential +25026345;FTTxCustomerLocation;Angergasse 13;2004;8501;Lieboch;Lieboch;60629;1;Residential +25026346;FTTxCustomerLocation;Angergasse 15;2003;8501;Lieboch;Lieboch;60629;1;Residential +25026347;FTTxCustomerLocation;Angergasse 17;2002;8501;Lieboch;Lieboch;60629;1;Residential +25026348;FTTxCustomerLocation;Angergasse 19;2001;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026349;FTTxCustomerLocation;Arkenweg 3;2013/1;8501;Lieboch;Lieboch;60629;1;Residential +25026350;FTTxCustomerLocation;Arkenweg 5;2014/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026351;FTTxCustomerLocation;Arkenweg 7;2015;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026352;FTTxCustomerLocation;Arkenweg 9;2016;8501;Lieboch;Lieboch;60629;1;Residential +25026353;FTTxCustomerLocation;Arkenweg 11;2017;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026354;FTTxCustomerLocation;Arkenweg 13;2018;8501;Lieboch;Lieboch;60629;1;Residential +25026355;FTTxCustomerLocation;Arkenweg 15;2019;8501;Lieboch;Lieboch;60629;1;Residential +25026356;FTTxCustomerLocation;Arkenweg 16;2021/1;8501;Lieboch;Lieboch;60629;1;Residential +25026357;FTTxCustomerLocation;Arkenweg 17;2020;8501;Lieboch;Lieboch;60629;1;Residential +25026358;FTTxCustomerLocation;Arkenweg 19;2052/2;8501;Lieboch;Lieboch;60629;1;Residential +25026359;FTTxCustomerLocation;Arkenweg 21;2052/1;8501;Lieboch;Lieboch;60629;1;Residential +25026360;FTTxCustomerLocation;Arkenweg 22;2051/2;8501;Lieboch;Lieboch;60629;1;Residential +25026361;FTTxCustomerLocation;Eichengasse 2;0.631;8501;Lieboch;Lieboch;60629;1;Residential +25026362;FTTxCustomerLocation;Eichengasse 2a;.630/2;8501;Lieboch;Lieboch;60629;1;Residential +25026363;FTTxCustomerLocation;Eichengasse 3;0.627;8501;Lieboch;Lieboch;60629;1;Residential +25026364;FTTxCustomerLocation;Eichengasse 4;0.632;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026365;FTTxCustomerLocation;Eichengasse 5;0.388;8501;Lieboch;Lieboch;60629;1;Residential +25026366;FTTxCustomerLocation;Eichengasse 6;0.54;8501;Lieboch;Lieboch;60629;1;Residential +25026367;FTTxCustomerLocation;Eichengasse 7;0.622;8501;Lieboch;Lieboch;60629;1;Residential +25026368;FTTxCustomerLocation;Eichengasse 8;99/29;8501;Lieboch;Lieboch;60629;1;Residential +25026369;FTTxCustomerLocation;Eichengasse 9;0.386;8501;Lieboch;Lieboch;60629;1;Residential +25026370;FTTxCustomerLocation;Eichengasse 10;99/30;8501;Lieboch;Lieboch;60629;1;Residential +25026372;FTTxCustomerLocation;Eichengasse 14;.412/1;8501;Lieboch;Lieboch;60629;1;Residential +25026373;FTTxCustomerLocation;Eichengasse 16;0.546;8501;Lieboch;Lieboch;60629;1;Residential +25026374;FTTxCustomerLocation;Eichengasse 18;0.623;8501;Lieboch;Lieboch;60629;1;Residential +25026375;FTTxCustomerLocation;Eichengasse 20;0.625;8501;Lieboch;Lieboch;60629;1;Residential +25026376;FTTxCustomerLocation;Eichengasse 22;0.624;8501;Lieboch;Lieboch;60629;1;Residential +25026377;FTTxCustomerLocation;Eichengasse 26;.389/2;8501;Lieboch;Lieboch;60629;1;Residential +25026378;FTTxCustomerLocation;Eichengasse 28;0.387;8501;Lieboch;Lieboch;60629;1;Residential +25026379;FTTxCustomerLocation;Eichengasse 30;0.621;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026380;FTTxCustomerLocation;Kainachstraße 21;1992;8501;Lieboch;Lieboch;60629;1;Residential +25026381;FTTxCustomerLocation;Kainachstraße 23;1993;8501;Lieboch;Lieboch;60629;1;Residential +25026382;FTTxCustomerLocation;Kainachstraße 55;1991;8501;Lieboch;Lieboch;60629;1;Residential +25026383;FTTxCustomerLocation;Mühlaustraße 2;1964;8501;Lieboch;Lieboch;60629;1;Residential +25026384;FTTxCustomerLocation;Mühlaustraße 3;2059/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026385;FTTxCustomerLocation;Mühlaustraße 5;2058;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026386;FTTxCustomerLocation;Mühlaustraße 6;1963;8501;Lieboch;Lieboch;60629;1;Residential +25026387;FTTxCustomerLocation;Mühlaustraße 7;2057;8501;Lieboch;Lieboch;60629;1;Residential +25026388;FTTxCustomerLocation;Mühlaustraße 8;1968;8501;Lieboch;Lieboch;60629;1;Residential +25026389;FTTxCustomerLocation;Mühlaustraße 9;2056;8501;Lieboch;Lieboch;60629;1;Residential +25026390;FTTxCustomerLocation;Mühlaustraße 10;1967;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026391;FTTxCustomerLocation;Mühlaustraße 13;2054/4;8501;Lieboch;Lieboch;60629;1;Residential +25026392;FTTxCustomerLocation;Mühlaustraße 15;2054/5;8501;Lieboch;Lieboch;60629;1;Residential +25026393;FTTxCustomerLocation;Mühlaustraße 17;2054/6;8501;Lieboch;Lieboch;60629;1;Residential +25026394;FTTxCustomerLocation;Mühlaustraße 19;2054/7;8501;Lieboch;Lieboch;60629;1;Residential +25026395;FTTxCustomerLocation;Mühlaustraße 21;2054/8;8501;Lieboch;Lieboch;60629;1;Residential +25026396;FTTxCustomerLocation;Mühlaustraße 23;2054/9;8501;Lieboch;Lieboch;60629;1;Residential +25026397;FTTxCustomerLocation;Mühlaustraße 25;2054/10;8501;Lieboch;Lieboch;60629;1;Residential +25026398;FTTxCustomerLocation;Mühlaustraße 27;2054/11;8501;Lieboch;Lieboch;60629;1;Residential +25026399;FTTxCustomerLocation;Mühlaustraße 29;2054/12;8501;Lieboch;Lieboch;60629;1;Residential +25026400;FTTxCustomerLocation;Mühlaustraße 45;2193;8501;Lieboch;Lieboch;60629;1;Residential +25026401;FTTxCustomerLocation;Mühlaustraße 56;2217;8501;Lieboch;Lieboch;60629;1;Residential +25026402;FTTxCustomerLocation;Mühlaustraße 62;2218;8501;Lieboch;Lieboch;60629;1;Residential +25026403;FTTxCustomerLocation;Mühlaustraße 63;2196;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026404;FTTxCustomerLocation;Mühlaustraße 64;0.878;8501;Lieboch;Lieboch;60629;1;Residential +25026405;FTTxCustomerLocation;Mühlaustraße 66;0.879;8501;Lieboch;Lieboch;60629;1;Residential +25026406;FTTxCustomerLocation;Mühlaustraße 70;2222;8501;Lieboch;Lieboch;60629;1;Residential +25026407;FTTxCustomerLocation;Mühlaustraße 72;2221;8501;Lieboch;Lieboch;60629;5;Multiple dwellings +25026408;FTTxCustomerLocation;Mühlaustraße 80;2223;8501;Lieboch;Lieboch;60629;1;Residential +25026409;FTTxCustomerLocation;Mühlaustraße 82;2225;8501;Lieboch;Lieboch;60629;1;Residential +25026410;FTTxCustomerLocation;Packer Straße 228;95;8501;Lieboch;Lieboch;60629;1;Residential +25026411;FTTxCustomerLocation;Packer Straße 234;87;8501;Lieboch;Lieboch;60629;1;Residential +25026412;FTTxCustomerLocation;Packer Straße 236;78/1;8501;Lieboch;Lieboch;60629;1;Residential +25026413;FTTxCustomerLocation;Packer Straße 237;2060;8501;Lieboch;Lieboch;60629;1;Residential +25026414;FTTxCustomerLocation;Packer Straße 242;0.541;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026415;FTTxCustomerLocation;Packer Straße 248;0.12;8501;Lieboch;Lieboch;60629;1;Residential +25026416;FTTxCustomerLocation;Packer Straße 261;1957/1;8501;Lieboch;Lieboch;60629;1;Company +25026417;FTTxCustomerLocation;Packer Straße 262;0.143;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026418;FTTxCustomerLocation;Packer Straße 265;1957/2;8501;Lieboch;Lieboch;60629;12;Multiple dwellings +25026419;FTTxCustomerLocation;Packer Straße 265a;1957/2;8501;Lieboch;Lieboch;60629;12;Multiple dwellings +25026420;FTTxCustomerLocation;Packer Straße 267;1956;8501;Lieboch;Lieboch;60629;1;Residential +25026421;FTTxCustomerLocation;Packer Straße 268;0.33;8501;Lieboch;Lieboch;60629;1;Residential +25026422;FTTxCustomerLocation;Packer Straße 272;0.411;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25026423;FTTxCustomerLocation;Packer Straße 274;.9/3;8501;Lieboch;Lieboch;60629;2;Company +25026424;FTTxCustomerLocation;Packer Straße 278;0.299;8501;Lieboch;Lieboch;60629;1;Residential +25026425;FTTxCustomerLocation;Packer Straße 280;0.256;8501;Lieboch;Lieboch;60629;1;Residential +25026426;FTTxCustomerLocation;Packer Straße 280a;0.628;8501;Lieboch;Lieboch;60629;1;Residential +25026427;FTTxCustomerLocation;Packer Straße 282;0.629;8501;Lieboch;Lieboch;60629;1;Residential +25026428;FTTxCustomerLocation;Packer Straße 286;0.8;8501;Lieboch;Lieboch;60629;1;Residential +25026429;FTTxCustomerLocation;Packer Straße 292;0.274;8501;Lieboch;Lieboch;60629;1;Residential +25026430;FTTxCustomerLocation;Packer Straße 294;0.243;8501;Lieboch;Lieboch;60629;1;Residential +25026431;FTTxCustomerLocation;Packer Straße 295;1948;8501;Lieboch;Lieboch;60629;1;Residential +25026432;FTTxCustomerLocation;Packer Straße 296;0.243;8501;Lieboch;Lieboch;60629;1;Residential +25026433;FTTxCustomerLocation;Packer Straße 300;.6/2;8501;Lieboch;Lieboch;60629;1;Residential +25026434;FTTxCustomerLocation;Packer Straße 306;0.5;8501;Lieboch;Lieboch;60629;1;Residential +25026435;FTTxCustomerLocation;Packer Straße 315;1943;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026436;FTTxCustomerLocation;Packer Straße 328;44599;8501;Lieboch;Lieboch;60629;1;Residential +25026437;FTTxCustomerLocation;Packer Straße 330;44627;8501;Lieboch;Lieboch;60629;1;Residential +25026438;FTTxCustomerLocation;Rosengasse 4;2214;8501;Lieboch;Lieboch;60629;1;Residential +25026439;FTTxCustomerLocation;Rosengasse 6;2213;8501;Lieboch;Lieboch;60629;1;Residential +25026440;FTTxCustomerLocation;Rosengasse 21;2226/1;8501;Lieboch;Lieboch;60629;1;Residential +25026441;FTTxCustomerLocation;Schmiedgasse 1;52/6;8501;Lieboch;Lieboch;60629;1;Residential +25026442;FTTxCustomerLocation;Schmiedgasse 4;.9/1;8501;Lieboch;Lieboch;60629;1;Residential +25026443;FTTxCustomerLocation;Schmiedgasse 5;.9/2;8501;Lieboch;Lieboch;60629;1;Residential +25026444;FTTxCustomerLocation;Schmiedgasse 6;.9/1;8501;Lieboch;Lieboch;60629;1;Residential +25026445;FTTxCustomerLocation;Schmiedgasse 7;53/5;8501;Lieboch;Lieboch;60629;1;Residential +25026446;FTTxCustomerLocation;Schmiedgasse 8;0.633;8501;Lieboch;Lieboch;60629;1;Residential +25026447;FTTxCustomerLocation;Schmiedgasse 9;53/3;8501;Lieboch;Lieboch;60629;1;Residential +25026448;FTTxCustomerLocation;Schmiedgasse 17;2267;8501;Lieboch;Lieboch;60629;1;Residential +25026449;FTTxCustomerLocation;Schmiedgasse 21;0.273;8501;Lieboch;Lieboch;60629;1;Residential +25026450;FTTxCustomerLocation;Sonnenweg 1;0.367;8501;Lieboch;Lieboch;60629;1;Residential +25026451;FTTxCustomerLocation;Sonnenweg 2;0.366;8501;Lieboch;Lieboch;60629;2;Company +25026452;FTTxCustomerLocation;Sonnenweg 4;72/5;8501;Lieboch;Lieboch;60629;1;Residential +25026453;FTTxCustomerLocation;Sonnenweg 5;0.368;8501;Lieboch;Lieboch;60629;1;Residential +25026454;FTTxCustomerLocation;Sonnenweg 6;72/1;8501;Lieboch;Lieboch;60629;1;Residential +25026455;FTTxCustomerLocation;Sonnenweg 8;0.396;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026456;FTTxCustomerLocation;Sonnenweg 10;74/1;8501;Lieboch;Lieboch;60629;1;Residential +25026457;FTTxCustomerLocation;Steinerstraße 31;54/5;8501;Lieboch;Lieboch;60629;1;Residential +25026458;FTTxCustomerLocation;Steinerstraße 2;0.634;8501;Lieboch;Lieboch;60629;1;Residential +25026459;FTTxCustomerLocation;Steinerstraße 7;0.146;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026460;FTTxCustomerLocation;Steinerstraße 15;0.11;8501;Lieboch;Lieboch;60629;1;Residential +25026461;FTTxCustomerLocation;Steinerstraße 20;0.62;8501;Lieboch;Lieboch;60629;1;Residential +25026462;FTTxCustomerLocation;Steinerstraße 27;0.618;8501;Lieboch;Lieboch;60629;1;Residential +25026463;FTTxCustomerLocation;Trattenweg 14;1977/4;8501;Lieboch;Lieboch;60629;1;Residential +25026464;FTTxCustomerLocation;Trattenweg 7;1976;8501;Lieboch;Lieboch;60629;1;Residential +25026465;FTTxCustomerLocation;Trattenweg 8;1977/1;8501;Lieboch;Lieboch;60629;1;Residential +25026466;FTTxCustomerLocation;Trattenweg 11;1987;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026467;FTTxCustomerLocation;Trattenweg 15;1986/1;8501;Lieboch;Lieboch;60629;1;Residential +25026468;FTTxCustomerLocation;Trattenweg 19;1985/3;8501;Lieboch;Lieboch;60629;1;Residential +25026469;FTTxCustomerLocation;Trattenweg 21;1985/3;8501;Lieboch;Lieboch;60629;1;Residential +25026470;FTTxCustomerLocation;Trattenweg 27;1984;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026471;FTTxCustomerLocation;Trattenweg 29;1983;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026472;FTTxCustomerLocation;Drosselgasse 1;81/3;8501;Lieboch;Lieboch;60629;1;Residential +25026473;FTTxCustomerLocation;Drosselgasse 3;81/4;8501;Lieboch;Lieboch;60629;1;Residential +25026474;FTTxCustomerLocation;Drosselgasse 5;81/5;8501;Lieboch;Lieboch;60629;1;Residential +25026475;FTTxCustomerLocation;Drosselgasse 6;78/5;8501;Lieboch;Lieboch;60629;1;Residential +25026476;FTTxCustomerLocation;Drosselgasse 7;81/6;8501;Lieboch;Lieboch;60629;1;Residential +25026477;FTTxCustomerLocation;Drosselgasse 9;81/7;8501;Lieboch;Lieboch;60629;1;Residential +25026478;FTTxCustomerLocation;Drosselgasse 10;78/3;8501;Lieboch;Lieboch;60629;1;Residential +25026479;FTTxCustomerLocation;Drosselgasse 11;81/8;8501;Lieboch;Lieboch;60629;1;Residential +25026480;FTTxCustomerLocation;Drosselgasse 12;78/2;8501;Lieboch;Lieboch;60629;1;Residential +25026481;FTTxCustomerLocation;Panoramaweg 5;0.616;8501;Lieboch;Lieboch;60629;1;Residential +25026482;FTTxCustomerLocation;Panoramaweg 9;0.617;8501;Lieboch;Lieboch;60629;1;Residential +25026483;FTTxCustomerLocation;Panoramaweg 13;46/3;8501;Lieboch;Lieboch;60629;1;Residential +25026484;FTTxCustomerLocation;Panoramaweg 21;45/3;8501;Lieboch;Lieboch;60629;1;Residential +25026485;FTTxCustomerLocation;Panoramaweg 25;45/5;8501;Lieboch;Lieboch;60629;1;Residential +25026486;FTTxCustomerLocation;Panoramaweg 27;45/6;8501;Lieboch;Lieboch;60629;1;Residential +25026487;FTTxCustomerLocation;Strohmayerweg 1;44916;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026488;FTTxCustomerLocation;Strohmayerweg 3;21/13;8501;Lieboch;Lieboch;60629;1;Residential +25026489;FTTxCustomerLocation;Strohmayerweg 4;0.713;8501;Lieboch;Lieboch;60629;1;Residential +25026490;FTTxCustomerLocation;Strohmayerweg 5;21/14;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026491;FTTxCustomerLocation;Strohmayerweg 7;21/15;8501;Lieboch;Lieboch;60629;1;Residential +25026492;FTTxCustomerLocation;Strohmayerweg 8;44578;8501;Lieboch;Lieboch;60629;1;Residential +25026493;FTTxCustomerLocation;Strohmayerweg 10;44609;8501;Lieboch;Lieboch;60629;1;Residential +25026494;FTTxCustomerLocation;Strohmayerweg 12;44637;8501;Lieboch;Lieboch;60629;1;Residential +25026495;FTTxCustomerLocation;Strohmayerweg 14;44668;8501;Lieboch;Lieboch;60629;1;Residential +25026496;FTTxCustomerLocation;Wildgasse 2;39/7;8501;Lieboch;Lieboch;60629;1;Residential +25026497;FTTxCustomerLocation;Wildgasse 10;39/11;8501;Lieboch;Lieboch;60629;1;Residential +25026498;FTTxCustomerLocation;Wildgasse 12;39/4;8501;Lieboch;Lieboch;60629;1;Residential +25026499;FTTxCustomerLocation;Wildgasse 14;39/12;8501;Lieboch;Lieboch;60629;1;Residential +25026500;FTTxCustomerLocation;Mühlaustraße 31;2054/13;8501;Lieboch;Lieboch;60629;1;Residential +25026501;FTTxCustomerLocation;Mühlaustraße 11;2054/3;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026502;FTTxCustomerLocation;Trattenweg 33;1982/2;8501;Lieboch;Lieboch;60629;1;Residential +25026503;FTTxCustomerLocation;Packer Straße 239;2059/2;8501;Lieboch;Lieboch;60629;1;Residential +25026504;FTTxCustomerLocation;Eichengasse 12;.412/2;8501;Lieboch;Lieboch;60629;1;Residential +25026505;FTTxCustomerLocation;Eichengasse 3a;99/21;8501;Lieboch;Lieboch;60629;1;Residential +25026506;FTTxCustomerLocation;Wildgasse 8;39/10;8501;Lieboch;Lieboch;60629;1;Residential +25026507;FTTxCustomerLocation;Strohmayerweg 9;21/16;8501;Lieboch;Lieboch;60629;1;Residential +25026508;FTTxCustomerLocation;Arkenweg 1;2012/1;8501;Lieboch;Lieboch;60629;1;Residential +25026509;FTTxCustomerLocation;Arkenweg 1b;2012/3;8501;Lieboch;Lieboch;60629;1;Residential +25026510;FTTxCustomerLocation;Arkenweg 3a;2013/2;8501;Lieboch;Lieboch;60629;1;Residential +25026511;FTTxCustomerLocation;Arkenweg 5a;2014/2;8501;Lieboch;Lieboch;60629;1;Residential +25026512;FTTxCustomerLocation;Packer Straße 263;1957/2;8501;Lieboch;Lieboch;60629;9;Multiple dwellings +25026513;FTTxCustomerLocation;Panoramaweg 23;45/4;8501;Lieboch;Lieboch;60629;1;Residential +25026514;FTTxCustomerLocation;Finkengasse 11;78/9;8501;Lieboch;Lieboch;60629;1;Residential +25026515;FTTxCustomerLocation;Finkengasse 13;78/9;8501;Lieboch;Lieboch;60629;1;Residential +25026516;FTTxCustomerLocation;Finkengasse 2;78/13;8501;Lieboch;Lieboch;60629;1;Residential +25026517;FTTxCustomerLocation;Finkengasse 3;78/11;8501;Lieboch;Lieboch;60629;1;Residential +25026518;FTTxCustomerLocation;Finkengasse 5;78/11;8501;Lieboch;Lieboch;60629;1;Residential +25026519;FTTxCustomerLocation;Finkengasse 6;78/12;8501;Lieboch;Lieboch;60629;1;Residential +25026520;FTTxCustomerLocation;Finkengasse 7;78/10;8501;Lieboch;Lieboch;60629;1;Residential +25026521;FTTxCustomerLocation;Packer Straße 269;1955/2;8501;Lieboch;Lieboch;60629;12;Multiple dwellings +25026522;FTTxCustomerLocation;Packer Straße 271;1955/2;8501;Lieboch;Lieboch;60629;12;Multiple dwellings +25026523;FTTxCustomerLocation;Packer Straße 275;1955/3;8501;Lieboch;Lieboch;60629;10;Multiple dwellings +25026524;FTTxCustomerLocation;Packer Straße 277;1955/3;8501;Lieboch;Lieboch;60629;10;Multiple dwellings +25026525;FTTxCustomerLocation;Packer Straße 279;1955/3;8501;Lieboch;Lieboch;60629;10;Multiple dwellings +25026526;FTTxCustomerLocation;Trattenweg 9;1988/2;8501;Lieboch;Lieboch;60629;1;Residential +25026527;FTTxCustomerLocation;Trattenweg 12;1977/3;8501;Lieboch;Lieboch;60629;1;Residential +25026528;FTTxCustomerLocation;Trattenweg 16;1977/5;8501;Lieboch;Lieboch;60629;1;Residential +25026529;FTTxCustomerLocation;Mühlaustraße 33;2054/14;8501;Lieboch;Lieboch;60629;1;Residential +25026530;FTTxCustomerLocation;Schmiedgasse 11;52/8;8501;Lieboch;Lieboch;60629;1;Residential +25026531;FTTxCustomerLocation;Sonnenweg 12;74/2;8501;Lieboch;Lieboch;60629;1;Residential +25026532;FTTxCustomerLocation;Arkenweg 1a;2012/2;8501;Lieboch;Lieboch;60629;1;Residential +25026533;FTTxCustomerLocation;Angergasse 1;2009/2;8501;Lieboch;Lieboch;60629;1;Residential +25026534;FTTxCustomerLocation;Wildgasse 1;45/2;8501;Lieboch;Lieboch;60629;1;Residential +25026535;FTTxCustomerLocation;Finkengasse 8;78/12;8501;Lieboch;Lieboch;60629;1;Residential +25026536;FTTxCustomerLocation;Finkengasse 9;78/10;8501;Lieboch;Lieboch;60629;1;Residential +25026537;FTTxCustomerLocation;Am Waldrand 11;56/7;8501;Lieboch;Lieboch;60629;1;Residential +25026538;FTTxCustomerLocation;Am Waldrand 17;56/3;8501;Lieboch;Lieboch;60629;1;Residential +25026539;FTTxCustomerLocation;Am Waldrand 15;56/4;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026540;FTTxCustomerLocation;Am Waldrand 13;56/4;8501;Lieboch;Lieboch;60629;1;Residential +25026541;FTTxCustomerLocation;Packer Straße 261a;1957/3;8501;Lieboch;Lieboch;60629;3;Multiple dwellings +25026542;FTTxCustomerLocation;Finkengasse 4;78/13;8501;Lieboch;Lieboch;60629;1;Residential +25026543;FTTxCustomerLocation;Am Waldrand 3;56/5;8501;Lieboch;Lieboch;60629;1;Residential +25026544;FTTxCustomerLocation;Am Waldrand 9;56/7;8501;Lieboch;Lieboch;60629;1;Residential +25026545;FTTxCustomerLocation;Eichengasse 26a;.389/1;8501;Lieboch;Lieboch;60629;1;Residential +25026546;FTTxCustomerLocation;Trattenweg 31;1982/1;8501;Lieboch;Lieboch;60629;1;Residential +25026547;FTTxCustomerLocation;Am Waldrand 1;56/5;8501;Lieboch;Lieboch;60629;1;Residential +25026548;FTTxCustomerLocation;Am Waldrand 7;56/6;8501;Lieboch;Lieboch;60629;1;Residential +25026549;FTTxCustomerLocation;Am Waldrand 19;56/3;8501;Lieboch;Lieboch;60629;1;Residential +25026550;FTTxCustomerLocation;Panoramaweg 3;56/2;8501;Lieboch;Lieboch;60629;1;Residential +25026551;FTTxCustomerLocation;Panoramaweg 3a;56/2;8501;Lieboch;Lieboch;60629;1;Residential +25026552;FTTxCustomerLocation;Flurgasse 32b;908/9;8501;Lieboch;Lieboch;60629;1;Residential +25026553;FTTxCustomerLocation;Panoramaweg 7;55/4;8501;Lieboch;Lieboch;60629;1;Residential +25026554;FTTxCustomerLocation;Am Waldrand 5;56/5;8501;Lieboch;Lieboch;60629;1;Residential +25026555;FTTxCustomerLocation;Packer Straße 273;1955/2;8501;Lieboch;Lieboch;60629;12;Multiple dwellings +25026556;FTTxCustomerLocation;Panoramaweg 3e;54/10;8501;Lieboch;Lieboch;60629;1;Residential +25026557;FTTxCustomerLocation;Angergasse 2;1999/2;8501;Lieboch;Lieboch;60629;1;Company +25026558;FTTxCustomerLocation;Angergasse 21;2000;8501;Lieboch;Lieboch;60629;1;Residential +25026559;FTTxCustomerLocation;Panoramaweg 3d;54/12;8501;Lieboch;Lieboch;60629;1;Residential +25026560;FTTxCustomerLocation;Panoramaweg 5a;55/5;8501;Lieboch;Lieboch;60629;1;Residential +25026561;FTTxCustomerLocation;Panoramaweg 3f;46/6;8501;Lieboch;Lieboch;60629;1;Residential +25026562;FTTxCustomerLocation;Panoramaweg 19;46/6;8501;Lieboch;Lieboch;60629;1;Residential +25026563;FTTxCustomerLocation;Arkenweg 20a;2021/3;8501;Lieboch;Lieboch;60629;1;Residential +25026564;FTTxCustomerLocation;Packer Straße 184;.774/2;8501;Lieboch;Lieboch;60629;1;Residential +25026565;FTTxCustomerLocation;Packer Straße 245e;1962/11;8501;Lieboch;Lieboch;60629;1;Residential +25026566;FTTxCustomerLocation;Packer Straße 245f;1962/11;8501;Lieboch;Lieboch;60629;1;Residential +25026567;FTTxCustomerLocation;Packer Straße 245g;1962/10;8501;Lieboch;Lieboch;60629;1;Residential +25026568;FTTxCustomerLocation;Packer Straße 245h;1962/10;8501;Lieboch;Lieboch;60629;1;Residential +25026569;FTTxCustomerLocation;Packer Straße 245c;1962/12;8501;Lieboch;Lieboch;60629;1;Residential +25026570;FTTxCustomerLocation;Packer Straße 245d;1962/12;8501;Lieboch;Lieboch;60629;1;Residential +25026571;FTTxCustomerLocation;Packer Straße 245i;1962/9;8501;Lieboch;Lieboch;60629;1;Residential +25026572;FTTxCustomerLocation;Packer Straße 245j;1962/9;8501;Lieboch;Lieboch;60629;1;Residential +25026573;FTTxCustomerLocation;Packer Straße 300a;.6/2;8501;Lieboch;Lieboch;60629;1;Residential +25026574;FTTxCustomerLocation;Panoramaweg 29;45/7;8501;Lieboch;Lieboch;60629;1;Residential +25026575;FTTxCustomerLocation;Packer Straße 243;1962/4;8501;Lieboch;Lieboch;60629;1;Residential +25026576;FTTxCustomerLocation;Packer Straße 243a;1962/4;8501;Lieboch;Lieboch;60629;1;Residential +25026577;FTTxCustomerLocation;Arkenweg 20;2021/4;8501;Lieboch;Lieboch;60629;1;Residential +25026578;FTTxCustomerLocation;Wildgasse 6;39/9;8501;Lieboch;Lieboch;60629;1;Residential +25026579;FTTxCustomerLocation;Arkenweg 5b;2014/2;8501;Lieboch;Lieboch;60629;1;Residential +25026580;FTTxCustomerLocation;Kainachstraße 70a;2232;8501;Lieboch;Lieboch;60629;1;Residential +25026581;FTTxCustomerLocation;Panoramaweg 3b;55/1;8501;Lieboch;Lieboch;60629;1;Residential +25026582;FTTxCustomerLocation;Panoramaweg 3c;55/1;8501;Lieboch;Lieboch;60629;1;Residential +25026583;FTTxCustomerLocation;Wildgasse 5;45/9;8501;Lieboch;Lieboch;60629;1;Residential +25026584;FTTxCustomerLocation;Packer Straße 243f;1962/8;8501;Lieboch;Lieboch;60629;1;Residential +25026585;FTTxCustomerLocation;Strohmayerweg 6;44729;8501;Lieboch;Lieboch;60629;1;Residential +25026586;FTTxCustomerLocation;Packer Straße 245b;1962/13;8501;Lieboch;Lieboch;60629;1;Residential +25026587;FTTxCustomerLocation;Packer Straße 245;1962/13;8501;Lieboch;Lieboch;60629;1;Residential +25026588;FTTxCustomerLocation;Packer Straße 245a;1962/13;8501;Lieboch;Lieboch;60629;1;Residential +25026589;FTTxCustomerLocation;Packer Straße 243b;1962/5;8501;Lieboch;Lieboch;60629;1;Residential +25026590;FTTxCustomerLocation;Packer Straße 243c;1962/6;8501;Lieboch;Lieboch;60629;1;Residential +25026591;FTTxCustomerLocation;Packer Straße 243d;1962/7;8501;Lieboch;Lieboch;60629;1;Residential +25026592;FTTxCustomerLocation;Packer Straße 243e;1962/7;8501;Lieboch;Lieboch;60629;1;Residential +25026593;FTTxCustomerLocation;Drosselgasse 8;78/4;8501;Lieboch;Lieboch;60629;1;Residential +25026594;FTTxCustomerLocation;Rosengasse 25;2226/3;8501;Lieboch;Lieboch;60629;1;Residential +25026595;FTTxCustomerLocation;Grabenstraße 5;542/5;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25026596;FTTxCustomerLocation;Am Gries 18;2066/2;8501;Lieboch;Lieboch;60629;14;Multiple dwellings +25026597;FTTxCustomerLocation;Arkenweg 18;2021/2;8501;Lieboch;Lieboch;60629;1;Residential +25026598;FTTxCustomerLocation;Packer Straße 302;35/1;8501;Lieboch;Lieboch;60629;2;Residential +25026599;FTTxCustomerLocation;Am Gries 7;2079/2;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25026600;FTTxCustomerLocation;Am Gries 5;2079/1;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25026601;FTTxCustomerLocation;Am Gries 3;2079/1;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25026602;FTTxCustomerLocation;Am Gries 1;2079/1;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25026603;FTTxCustomerLocation;Angergasse 11a;2005;8501;Lieboch;Lieboch;60629;1;Residential +25026604;FTTxCustomerLocation;Angergasse 11b;2005;8501;Lieboch;Lieboch;60629;1;Residential +25026605;FTTxCustomerLocation;Angergasse 11c;2005;8501;Lieboch;Lieboch;60629;1;Residential +25026606;FTTxCustomerLocation;Angergasse 5a;2006/1;8501;Lieboch;Lieboch;60629;1;Residential +25026607;FTTxCustomerLocation;Packer Straße 204;546;8501;Lieboch;Lieboch;60629;5;Multiple dwellings +25026608;FTTxCustomerLocation;Schmiedgasse 15;2268;8501;Lieboch;Lieboch;60629;1;Residential +25026609;FTTxCustomerLocation;Schmiedgasse 15a;53/1;8501;Lieboch;Lieboch;60629;1;Residential +25026610;FTTxCustomerLocation;Schmiedgasse 15d;53/9;8501;Lieboch;Lieboch;60629;1;Residential +25026611;FTTxCustomerLocation;Packer Straße 161;2091/1;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25026612;FTTxCustomerLocation;Packer Straße 163;2091/1;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25026613;FTTxCustomerLocation;Birkenstraße 32;2091/1;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25026614;FTTxCustomerLocation;Eichengasse 20a;0.625;8501;Lieboch;Lieboch;60629;1;Residential +25026615;FTTxCustomerLocation;Schmiedgasse 15b;53/7;8501;Lieboch;Lieboch;60629;1;Residential +25026616;FTTxCustomerLocation;Angergasse 9;2006/3;8501;Lieboch;Lieboch;60629;1;Residential +25026617;FTTxCustomerLocation;Angergasse 9a;2006/4;8501;Lieboch;Lieboch;60629;1;Residential +25026618;FTTxCustomerLocation;Angergasse 9b;2006/4;8501;Lieboch;Lieboch;60629;1;Residential +25026620;FTTxCustomerLocation;Schmiedgasse 15c;53/8;8501;Lieboch;Lieboch;60629;1;Residential +25026621;FTTxCustomerLocation;Rosengasse 23;2226/1;8501;Lieboch;Lieboch;60629;2;Residential +25026622;FTTxCustomerLocation;Angergasse 9d;2006/6;8501;Lieboch;Lieboch;60629;1;Residential +25026623;FTTxCustomerLocation;Packer Straße 285a;1952/3;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25026624;FTTxCustomerLocation;Packer Straße 285b;1952/3;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25026625;FTTxCustomerLocation;Packer Straße 285c;1952/3;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25026626;FTTxCustomerLocation;Packer Straße 234a;87;8501;Lieboch;Lieboch;60629;1;Residential +25026627;FTTxCustomerLocation;Packer Straße 281;1953;8501;Lieboch;Lieboch;60629;3;Company +25026628;FTTxCustomerLocation;Packer Straße 283a;1953;8501;Lieboch;Lieboch;60629;7;Multiple dwellings +25026629;FTTxCustomerLocation;Packer Straße 283b;1953;8501;Lieboch;Lieboch;60629;7;Multiple dwellings +25026630;FTTxCustomerLocation;Packer Straße 283c;1953;8501;Lieboch;Lieboch;60629;7;Multiple dwellings +25026631;FTTxCustomerLocation;Werner Gröbl-Straße 3;1775/1;8501;Lieboch;Lieboch;60629;1;Company +25026632;FTTxCustomerLocation;Werner Gröbl-Straße 4;1780/7;8501;Lieboch;Lieboch;60629;1;Residential +25026634;FTTxCustomerLocation;Amselgasse 6;0.799;8501;Lieboch;Lieboch;60629;1;Residential +25026635;FTTxCustomerLocation;Amselgasse 8;0.594;8501;Lieboch;Lieboch;60629;1;Residential +25026636;FTTxCustomerLocation;Amselgasse 9;0.595;8501;Lieboch;Lieboch;60629;1;Residential +25026637;FTTxCustomerLocation;Amselgasse 10;0.597;8501;Lieboch;Lieboch;60629;1;Residential +25026638;FTTxCustomerLocation;Amselgasse 11;0.802;8501;Lieboch;Lieboch;60629;1;Residential +25026639;FTTxCustomerLocation;Amselgasse 12;0.28;8501;Lieboch;Lieboch;60629;1;Residential +25026640;FTTxCustomerLocation;Amselgasse 14;0.8;8501;Lieboch;Lieboch;60629;1;Residential +25026641;FTTxCustomerLocation;Amselgasse 16;.596/1;8501;Lieboch;Lieboch;60629;1;Residential +25026642;FTTxCustomerLocation;Amselgasse 16a;.596/2;8501;Lieboch;Lieboch;60629;1;Residential +25026643;FTTxCustomerLocation;Amselgasse 18;0.801;8501;Lieboch;Lieboch;60629;1;Residential +25026644;FTTxCustomerLocation;Amselgasse 20;1635/25;8501;Lieboch;Lieboch;60629;1;Residential +25026645;FTTxCustomerLocation;Bachweg 1;0.609;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026646;FTTxCustomerLocation;Bachweg 3;.581/1;8501;Lieboch;Lieboch;60629;1;Residential +25026647;FTTxCustomerLocation;Bachweg 4;1639/21;8501;Lieboch;Lieboch;60629;1;Residential +25026648;FTTxCustomerLocation;Bachweg 5;.581/2;8501;Lieboch;Lieboch;60629;1;Residential +25026649;FTTxCustomerLocation;Bachweg 6;1639/22;8501;Lieboch;Lieboch;60629;1;Residential +25026650;FTTxCustomerLocation;Bachweg 8;1639/23;8501;Lieboch;Lieboch;60629;1;Residential +25026651;FTTxCustomerLocation;Bachweg 9;.582/1;8501;Lieboch;Lieboch;60629;1;Residential +25026652;FTTxCustomerLocation;Bachweg 10;1639/24;8501;Lieboch;Lieboch;60629;1;Residential +25026653;FTTxCustomerLocation;Bachweg 13;0.583;8501;Lieboch;Lieboch;60629;1;Residential +25026654;FTTxCustomerLocation;Bachweg 15;0.584;8501;Lieboch;Lieboch;60629;1;Residential +25026655;FTTxCustomerLocation;Bahnhofstraße 1;0.792;8501;Lieboch;Lieboch;60629;7;Multiple dwellings +25026656;FTTxCustomerLocation;Bahnhofstraße 21;0.608;8501;Lieboch;Lieboch;60629;2;Company +25026657;FTTxCustomerLocation;Bahnhofstraße 37;1799/22;8501;Lieboch;Lieboch;60629;1;Residential +25026658;FTTxCustomerLocation;Bahnhofstraße 40;.134/3;8501;Lieboch;Lieboch;60629;1;Residential +25026659;FTTxCustomerLocation;Bahnhofstraße 41;1799/10;8501;Lieboch;Lieboch;60629;14;Multiple dwellings +25026660;FTTxCustomerLocation;Bahnhofstraße 42;.134/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026661;FTTxCustomerLocation;Bahnhofstraße 45;.133/1;8501;Lieboch;Lieboch;60629;1;Residential +25026662;FTTxCustomerLocation;Bahnhofstraße 46;0.19;8501;Lieboch;Lieboch;60629;2;Company +25026663;FTTxCustomerLocation;Bahnhofstraße 49;.133/2;8501;Lieboch;Lieboch;60629;1;Residential +25026664;FTTxCustomerLocation;Bahnhofstraße 51;1793/10;8501;Lieboch;Lieboch;60629;1;Residential +25026665;FTTxCustomerLocation;Bahnhofstraße 52;0.606;8501;Lieboch;Lieboch;60629;1;Residential +25026666;FTTxCustomerLocation;Bahnhofstraße 54;0.183;8501;Lieboch;Lieboch;60629;1;Residential +25026667;FTTxCustomerLocation;Bahnhofstraße 56;.137/1;8501;Lieboch;Lieboch;60629;1;Residential +25026668;FTTxCustomerLocation;Bahnhofstraße 59;.135/3;8501;Lieboch;Lieboch;60629;1;Residential +25026669;FTTxCustomerLocation;Bahnhofstraße 61;.135/4;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026670;FTTxCustomerLocation;Bahnhofstraße 65;0.211;8501;Lieboch;Lieboch;60629;1;Residential +25026671;FTTxCustomerLocation;Bahnhofstraße 69;.136/2;8501;Lieboch;Lieboch;60629;1;Residential +25026672;FTTxCustomerLocation;Bahnhofstraße 71;.136/3;8501;Lieboch;Lieboch;60629;1;Residential +25026673;FTTxCustomerLocation;Bahnhofstraße 73;1787/3;8501;Lieboch;Lieboch;60629;1;Residential +25026674;FTTxCustomerLocation;Bahnhofstraße 75;1787/14;8501;Lieboch;Lieboch;60629;1;Residential +25026675;FTTxCustomerLocation;Bahnweg 10;0.607;8501;Lieboch;Lieboch;60629;3;Multiple dwellings +25026676;FTTxCustomerLocation;Bienengasse 12;.220/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026677;FTTxCustomerLocation;Bienengasse 15;.220/2;8501;Lieboch;Lieboch;60629;1;Residential +25026678;FTTxCustomerLocation;Bienengasse 20;1816/45;8501;Lieboch;Lieboch;60629;1;Residential +25026679;FTTxCustomerLocation;Bienengasse 22;1816/46;8501;Lieboch;Lieboch;60629;1;Residential +25026680;FTTxCustomerLocation;Bienengasse 23;0.844;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026681;FTTxCustomerLocation;Bienengasse 24;1816/47;8501;Lieboch;Lieboch;60629;1;Residential +25026682;FTTxCustomerLocation;Bienengasse 25;0.845;8501;Lieboch;Lieboch;60629;1;Residential +25026683;FTTxCustomerLocation;Bienengasse 28;1816/114;8501;Lieboch;Lieboch;60629;1;Residential +25026684;FTTxCustomerLocation;Bienengasse 29;1816/72;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026685;FTTxCustomerLocation;Bienengasse 31;0.846;8501;Lieboch;Lieboch;60629;1;Residential +25026686;FTTxCustomerLocation;Bienengasse 34;1816/83;8501;Lieboch;Lieboch;60629;1;Residential +25026687;FTTxCustomerLocation;Bienengasse 35;1816/42;8501;Lieboch;Lieboch;60629;1;Residential +25026688;FTTxCustomerLocation;Bienengasse 40;1816/41;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026689;FTTxCustomerLocation;Bienengasse 41;0.847;8501;Lieboch;Lieboch;60629;1;Residential +25026690;FTTxCustomerLocation;Bienengasse 47;1816/107;8501;Lieboch;Lieboch;60629;1;Residential +25026691;FTTxCustomerLocation;Bienengasse 49;1816/106;8501;Lieboch;Lieboch;60629;1;Residential +25026692;FTTxCustomerLocation;Bienengasse 53;1816/104;8501;Lieboch;Lieboch;60629;1;Residential +25026693;FTTxCustomerLocation;Bienengasse 55;1816/28;8501;Lieboch;Lieboch;60629;1;Residential +25026694;FTTxCustomerLocation;Johann Assl-Platz 1;1817/13;8501;Lieboch;Lieboch;60629;1;Company +25026695;FTTxCustomerLocation;Doblerstraße 11;0.167;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026696;FTTxCustomerLocation;Doblerstraße 14;1779/3;8501;Lieboch;Lieboch;60629;1;Company +25026697;FTTxCustomerLocation;Doblerstraße 15;1817/11;8501;Lieboch;Lieboch;60629;1;Residential +25026698;FTTxCustomerLocation;Doblerstraße 17;0.199;8501;Lieboch;Lieboch;60629;1;Residential +25026699;FTTxCustomerLocation;Doblerstraße 18;1779/1;8501;Lieboch;Lieboch;60629;1;Company +25026700;FTTxCustomerLocation;Doblerstraße 20;.839/2;8501;Lieboch;Lieboch;60629;1;Residential +25026701;FTTxCustomerLocation;Doblerstraße 22;1775/2;8501;Lieboch;Lieboch;60629;3;Company +25026702;FTTxCustomerLocation;Doblerstraße 24;1775/3;8501;Lieboch;Lieboch;60629;1;Company +25026703;FTTxCustomerLocation;Doblerstraße 25;0.84;8501;Lieboch;Lieboch;60629;1;Residential +25026704;FTTxCustomerLocation;Doblerstraße 29;1816/103;8501;Lieboch;Lieboch;60629;1;Residential +25026705;FTTxCustomerLocation;Doblerstraße 31;0.168;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026706;FTTxCustomerLocation;Doblerstraße 31a;1816/80;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026707;FTTxCustomerLocation;Doblerstraße 35;0.237;8501;Lieboch;Lieboch;60629;1;Residential +25026708;FTTxCustomerLocation;Doblerstraße 37;0.841;8501;Lieboch;Lieboch;60629;1;Residential +25026709;FTTxCustomerLocation;Doblerstraße 41;0.173;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026710;FTTxCustomerLocation;Elisabethstraße 4;1799/19;8501;Lieboch;Lieboch;60629;1;Residential +25026711;FTTxCustomerLocation;Elisabethstraße 6;0.795;8501;Lieboch;Lieboch;60629;1;Residential +25026712;FTTxCustomerLocation;Elisabethstraße 8;0.796;8501;Lieboch;Lieboch;60629;1;Residential +25026713;FTTxCustomerLocation;Elisabethstraße 12;1799/15;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026714;FTTxCustomerLocation;Elisabethstraße 14;.797/1;8501;Lieboch;Lieboch;60629;1;Residential +25026715;FTTxCustomerLocation;Elisabethstraße 22;1795/5;8501;Lieboch;Lieboch;60629;1;Residential +25026716;FTTxCustomerLocation;Elisabethstraße 24;1795/6;8501;Lieboch;Lieboch;60629;1;Residential +25026717;FTTxCustomerLocation;Elisabethstraße 26;1795/7;8501;Lieboch;Lieboch;60629;1;Residential +25026718;FTTxCustomerLocation;Elisabethstraße 28;1795/1;8501;Lieboch;Lieboch;60629;1;Residential +25026719;FTTxCustomerLocation;Elisabethstraße 32;1794/12;8501;Lieboch;Lieboch;60629;1;Residential +25026720;FTTxCustomerLocation;Fichtengasse 5;0.859;8501;Lieboch;Lieboch;60629;1;Residential +25026721;FTTxCustomerLocation;Fichtengasse 7;0.86;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026722;FTTxCustomerLocation;Fichtengasse 9;1814/23;8501;Lieboch;Lieboch;60629;1;Residential +25026723;FTTxCustomerLocation;Fichtengasse 11;.337/2;8501;Lieboch;Lieboch;60629;1;Residential +25026724;FTTxCustomerLocation;Föhrengasse 1;0.813;8501;Lieboch;Lieboch;60629;1;Residential +25026725;FTTxCustomerLocation;Föhrengasse 2;1634/2;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026726;FTTxCustomerLocation;Föhrengasse 2a;1634/13;8501;Lieboch;Lieboch;60629;1;Residential +25026727;FTTxCustomerLocation;Föhrengasse 3;0.814;8501;Lieboch;Lieboch;60629;1;Residential +25026728;FTTxCustomerLocation;Föhrengasse 4;1634/15;8501;Lieboch;Lieboch;60629;1;Residential +25026729;FTTxCustomerLocation;Föhrengasse 5;0.586;8501;Lieboch;Lieboch;60629;1;Residential +25026730;FTTxCustomerLocation;Föhrengasse 6;1634/7;8501;Lieboch;Lieboch;60629;1;Residential +25026731;FTTxCustomerLocation;Föhrengasse 7;0.815;8501;Lieboch;Lieboch;60629;1;Residential +25026732;FTTxCustomerLocation;Föhrengasse 8;0.587;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026733;FTTxCustomerLocation;Föhrengasse 10;0.821;8501;Lieboch;Lieboch;60629;1;Residential +25026734;FTTxCustomerLocation;Forstgasse 29;1812/65;8501;Lieboch;Lieboch;60629;1;Residential +25026735;FTTxCustomerLocation;Forstgasse 1;0.401;8501;Lieboch;Lieboch;60629;1;Residential +25026736;FTTxCustomerLocation;Forstgasse 2;0.402;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026737;FTTxCustomerLocation;Forstgasse 3;1812/51;8501;Lieboch;Lieboch;60629;1;Residential +25026738;FTTxCustomerLocation;Forstgasse 5;0.503;8501;Lieboch;Lieboch;60629;1;Residential +25026739;FTTxCustomerLocation;Forstgasse 5a;0.503;8501;Lieboch;Lieboch;60629;1;Residential +25026740;FTTxCustomerLocation;Forstgasse 7;0.262;8501;Lieboch;Lieboch;60629;1;Residential +25026741;FTTxCustomerLocation;Forstgasse 8;0.831;8501;Lieboch;Lieboch;60629;1;Residential +25026742;FTTxCustomerLocation;Forstgasse 9;0.293;8501;Lieboch;Lieboch;60629;1;Residential +25026743;FTTxCustomerLocation;Forstgasse 10;0.362;8501;Lieboch;Lieboch;60629;1;Residential +25026744;FTTxCustomerLocation;Forstgasse 11;0.507;8501;Lieboch;Lieboch;60629;1;Residential +25026745;FTTxCustomerLocation;Forstgasse 12;1813/28;8501;Lieboch;Lieboch;60629;1;Residential +25026746;FTTxCustomerLocation;Forstgasse 13;0.505;8501;Lieboch;Lieboch;60629;1;Residential +25026747;FTTxCustomerLocation;Forstgasse 14;0.305;8501;Lieboch;Lieboch;60629;1;Residential +25026748;FTTxCustomerLocation;Forstgasse 16;0.373;8501;Lieboch;Lieboch;60629;1;Residential +25026749;FTTxCustomerLocation;Forstgasse 18;2259;8501;Lieboch;Lieboch;60629;1;Residential +25026750;FTTxCustomerLocation;Forstgasse 19;0.83;8501;Lieboch;Lieboch;60629;1;Residential +25026751;FTTxCustomerLocation;Forstgasse 21;0.304;8501;Lieboch;Lieboch;60629;1;Residential +25026752;FTTxCustomerLocation;Forstgasse 22;0.537;8501;Lieboch;Lieboch;60629;1;Residential +25026753;FTTxCustomerLocation;Forstgasse 24;0.539;8501;Lieboch;Lieboch;60629;1;Residential +25026754;FTTxCustomerLocation;Forstgasse 25;0.327;8501;Lieboch;Lieboch;60629;1;Residential +25026755;FTTxCustomerLocation;Forstgasse 26;0.306;8501;Lieboch;Lieboch;60629;1;Residential +25026756;FTTxCustomerLocation;Forstgasse 27;0.511;8501;Lieboch;Lieboch;60629;1;Residential +25026757;FTTxCustomerLocation;Forstgasse 28;0.263;8501;Lieboch;Lieboch;60629;1;Residential +25026758;FTTxCustomerLocation;Forstgasse 30;0.307;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026759;FTTxCustomerLocation;Forstgasse 32;1813/53;8501;Lieboch;Lieboch;60629;1;Residential +25026760;FTTxCustomerLocation;Forstgasse 33;0.824;8501;Lieboch;Lieboch;60629;1;Residential +25026761;FTTxCustomerLocation;Forstgasse 35;0.825;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026762;FTTxCustomerLocation;Forstgasse 36;0.319;8501;Lieboch;Lieboch;60629;1;Residential +25026763;FTTxCustomerLocation;Forstgasse 37;0.372;8501;Lieboch;Lieboch;60629;1;Residential +25026764;FTTxCustomerLocation;Forstgasse 38;0.32;8501;Lieboch;Lieboch;60629;1;Residential +25026765;FTTxCustomerLocation;Forstgasse 39;0.361;8501;Lieboch;Lieboch;60629;1;Residential +25026766;FTTxCustomerLocation;Forstgasse 39;0.361;8501;Lieboch;Lieboch;60629;1;Residential +25026767;FTTxCustomerLocation;Forstgasse 40;0.832;8501;Lieboch;Lieboch;60629;1;Residential +25026768;FTTxCustomerLocation;Forstgasse 42;0.833;8501;Lieboch;Lieboch;60629;1;Residential +25026769;FTTxCustomerLocation;Forstgasse 43;0.36;8501;Lieboch;Lieboch;60629;1;Residential +25026770;FTTxCustomerLocation;Gartengasse 1;0.51;8501;Lieboch;Lieboch;60629;1;Residential +25026771;FTTxCustomerLocation;Gartengasse 2;0.816;8501;Lieboch;Lieboch;60629;1;Residential +25026772;FTTxCustomerLocation;Gartengasse 3;1634/14;8501;Lieboch;Lieboch;60629;1;Residential +25026773;FTTxCustomerLocation;Gartengasse 4;0.817;8501;Lieboch;Lieboch;60629;1;Residential +25026774;FTTxCustomerLocation;Gartengasse 6;0.26;8501;Lieboch;Lieboch;60629;1;Residential +25026775;FTTxCustomerLocation;Gartengasse 8;.302/1;8501;Lieboch;Lieboch;60629;1;Residential +25026776;FTTxCustomerLocation;Gartengasse 8a;.302/2;8501;Lieboch;Lieboch;60629;1;Residential +25026777;FTTxCustomerLocation;Gartengasse 10;0.257;8501;Lieboch;Lieboch;60629;1;Residential +25026778;FTTxCustomerLocation;Gartengasse 12;0.261;8501;Lieboch;Lieboch;60629;1;Residential +25026779;FTTxCustomerLocation;Gartengasse 16;.264/1;8501;Lieboch;Lieboch;60629;1;Residential +25026780;FTTxCustomerLocation;Hofgasse 1;0.334;8501;Lieboch;Lieboch;60629;1;Residential +25026781;FTTxCustomerLocation;Hofgasse 2;0.335;8501;Lieboch;Lieboch;60629;1;Residential +25026782;FTTxCustomerLocation;Hofgasse 8;.192/2;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026783;FTTxCustomerLocation;Hofgasse 10;.192/2;8501;Lieboch;Lieboch;60629;1;Company +25026784;FTTxCustomerLocation;Hofgasse 12;0.329;8501;Lieboch;Lieboch;60629;1;Residential +25026785;FTTxCustomerLocation;Kernstockgasse 4;0.861;8501;Lieboch;Lieboch;60629;1;Residential +25026786;FTTxCustomerLocation;Kernstockgasse 5;0.864;8501;Lieboch;Lieboch;60629;1;Residential +25026787;FTTxCustomerLocation;Kernstockgasse 6;1789/3;8501;Lieboch;Lieboch;60629;1;Residential +25026788;FTTxCustomerLocation;Kernstockgasse 7;0.863;8501;Lieboch;Lieboch;60629;1;Residential +25026789;FTTxCustomerLocation;Kernstockgasse 9;0.862;8501;Lieboch;Lieboch;60629;1;Residential +25026790;FTTxCustomerLocation;Kernstockgasse 10;1789/4;8501;Lieboch;Lieboch;60629;1;Residential +25026791;FTTxCustomerLocation;Kernstockgasse 11;0.798;8501;Lieboch;Lieboch;60629;1;Residential +25026792;FTTxCustomerLocation;Kernstockgasse 12;1789/5;8501;Lieboch;Lieboch;60629;1;Residential +25026793;FTTxCustomerLocation;Kernstockgasse 14;1790/3;8501;Lieboch;Lieboch;60629;1;Residential +25026794;FTTxCustomerLocation;Kernstockgasse 18;1790/4;8501;Lieboch;Lieboch;60629;1;Residential +25026795;FTTxCustomerLocation;Klöpfergasse 4;1813/83;8501;Lieboch;Lieboch;60629;1;Residential +25026796;FTTxCustomerLocation;Klöpfergasse 5;0.487;8501;Lieboch;Lieboch;60629;1;Residential +25026797;FTTxCustomerLocation;Klöpfergasse 7;0.489;8501;Lieboch;Lieboch;60629;1;Residential +25026798;FTTxCustomerLocation;Klöpfergasse 8;0.602;8501;Lieboch;Lieboch;60629;1;Residential +25026799;FTTxCustomerLocation;Klöpfergasse 9;1813/92;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026800;FTTxCustomerLocation;Klöpfergasse 11;1813/98;8501;Lieboch;Lieboch;60629;1;Residential +25026801;FTTxCustomerLocation;Klöpfergasse 15;0.855;8501;Lieboch;Lieboch;60629;1;Residential +25026802;FTTxCustomerLocation;Klöpfergasse 20;0.854;8501;Lieboch;Lieboch;60629;1;Residential +25026803;FTTxCustomerLocation;Radlstraße 10;0.265;8501;Lieboch;Lieboch;60629;1;Residential +25026804;FTTxCustomerLocation;Radlstraße 11;0.318;8501;Lieboch;Lieboch;60629;1;Residential +25026805;FTTxCustomerLocation;Radlstraße 12;0.807;8501;Lieboch;Lieboch;60629;1;Residential +25026806;FTTxCustomerLocation;Radlstraße 14;1811/47;8501;Lieboch;Lieboch;60629;1;Residential +25026807;FTTxCustomerLocation;Radlstraße 15;1812/62;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026808;FTTxCustomerLocation;Radlstraße 25;0.292;8501;Lieboch;Lieboch;60629;1;Residential +25026809;FTTxCustomerLocation;Radlstraße 28;0.221;8501;Lieboch;Lieboch;60629;1;Residential +25026810;FTTxCustomerLocation;Radlstraße 30;0.359;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026811;FTTxCustomerLocation;Radlstraße 32;0.222;8501;Lieboch;Lieboch;60629;1;Residential +25026812;FTTxCustomerLocation;Radlstraße 34;0.271;8501;Lieboch;Lieboch;60629;1;Residential +25026813;FTTxCustomerLocation;Radlstraße 36;0.593;8501;Lieboch;Lieboch;60629;1;Residential +25026814;FTTxCustomerLocation;Radlstraße 42;0.23;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25026815;FTTxCustomerLocation;Radlstraße 48;.337/1;8501;Lieboch;Lieboch;60629;1;Residential +25026816;FTTxCustomerLocation;Radlstraße 49;0.865;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026817;FTTxCustomerLocation;Radlstraße 60;.141/1;8501;Lieboch;Lieboch;60629;2;Company +25026818;FTTxCustomerLocation;Radlstraße 61;1780/13;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026819;FTTxCustomerLocation;Radlstraße 66;1660/2;8501;Lieboch;Lieboch;60629;2;Company +25026820;FTTxCustomerLocation;Radlstraße 85;1731/1;8501;Lieboch;Lieboch;60629;2;Company +25026821;FTTxCustomerLocation;Roseggergasse 1;0.461;8501;Lieboch;Lieboch;60629;1;Residential +25026822;FTTxCustomerLocation;Roseggergasse 2;0.534;8501;Lieboch;Lieboch;60629;1;Residential +25026823;FTTxCustomerLocation;Roseggergasse 3;0.462;8501;Lieboch;Lieboch;60629;1;Residential +25026824;FTTxCustomerLocation;Roseggergasse 4;0.464;8501;Lieboch;Lieboch;60629;1;Residential +25026825;FTTxCustomerLocation;Roseggergasse 5;0.466;8501;Lieboch;Lieboch;60629;1;Residential +25026826;FTTxCustomerLocation;Roseggergasse 6;0.481;8501;Lieboch;Lieboch;60629;1;Residential +25026827;FTTxCustomerLocation;Roseggergasse 7;0.468;8501;Lieboch;Lieboch;60629;1;Residential +25026828;FTTxCustomerLocation;Roseggergasse 8;.475/1;8501;Lieboch;Lieboch;60629;1;Other +25026829;FTTxCustomerLocation;Roseggergasse 9;0.469;8501;Lieboch;Lieboch;60629;1;Residential +25026830;FTTxCustomerLocation;Roseggergasse 10;0.476;8501;Lieboch;Lieboch;60629;1;Residential +25026831;FTTxCustomerLocation;Roseggergasse 11;0.486;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026832;FTTxCustomerLocation;Roseggergasse 12;0.477;8501;Lieboch;Lieboch;60629;1;Residential +25026833;FTTxCustomerLocation;Roseggergasse 13;1813/116;8501;Lieboch;Lieboch;60629;1;Residential +25026834;FTTxCustomerLocation;Roseggergasse 14;0.856;8501;Lieboch;Lieboch;60629;1;Residential +25026835;FTTxCustomerLocation;Roseggergasse 15;0.471;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026836;FTTxCustomerLocation;Roseggergasse 16;0.603;8501;Lieboch;Lieboch;60629;1;Residential +25026837;FTTxCustomerLocation;Roseggergasse 17;0.473;8501;Lieboch;Lieboch;60629;1;Residential +25026838;FTTxCustomerLocation;Roseggergasse 18;0.605;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026839;FTTxCustomerLocation;Roseggergasse 19;0.85;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026840;FTTxCustomerLocation;Roseggergasse 20;0.853;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026841;FTTxCustomerLocation;Roseggergasse 24;0.598;8501;Lieboch;Lieboch;60629;1;Residential +25026842;FTTxCustomerLocation;Roseggergasse 25;0.6;8501;Lieboch;Lieboch;60629;1;Residential +25026843;FTTxCustomerLocation;Roseggergasse 26;0.842;8501;Lieboch;Lieboch;60629;1;Residential +25026844;FTTxCustomerLocation;Roseggergasse 27;0.479;8501;Lieboch;Lieboch;60629;1;Residential +25026845;FTTxCustomerLocation;Roseggergasse 33;0.604;8501;Lieboch;Lieboch;60629;1;Residential +25026846;FTTxCustomerLocation;Roseggergasse 35;0.851;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026847;FTTxCustomerLocation;Roseggergasse 39;0.599;8501;Lieboch;Lieboch;60629;1;Residential +25026848;FTTxCustomerLocation;Roseggergasse 45;.843/1;8501;Lieboch;Lieboch;60629;1;Residential +25026849;FTTxCustomerLocation;Roseggergasse 47;0.852;8501;Lieboch;Lieboch;60629;1;Residential +25026850;FTTxCustomerLocation;Roseggergasse 53;1816/18;8501;Lieboch;Lieboch;60629;1;Residential +25026851;FTTxCustomerLocation;Sackgasse 3;0.59;8501;Lieboch;Lieboch;60629;1;Residential +25026852;FTTxCustomerLocation;Sackgasse 4;0.509;8501;Lieboch;Lieboch;60629;1;Residential +25026853;FTTxCustomerLocation;Sackgasse 5;0.828;8501;Lieboch;Lieboch;60629;1;Residential +25026854;FTTxCustomerLocation;Sackgasse 6;1812/60;8501;Lieboch;Lieboch;60629;1;Residential +25026855;FTTxCustomerLocation;Sackgasse 7;0.827;8501;Lieboch;Lieboch;60629;1;Residential +25026856;FTTxCustomerLocation;Sackgasse 8;0.829;8501;Lieboch;Lieboch;60629;1;Residential +25026857;FTTxCustomerLocation;Sackgasse 10;0.826;8501;Lieboch;Lieboch;60629;1;Residential +25026859;FTTxCustomerLocation;Siebweg 30;960/2;8501;Lieboch;Lieboch;60629;1;Residential +25026861;FTTxCustomerLocation;Strauchweg 4;1639/33;8501;Lieboch;Lieboch;60629;1;Residential +25026862;FTTxCustomerLocation;Strauchweg 7;0.794;8501;Lieboch;Lieboch;60629;1;Residential +25026863;FTTxCustomerLocation;Strauchweg 14;0.227;8501;Lieboch;Lieboch;60629;1;Residential +25026864;FTTxCustomerLocation;Strauchweg 20;0.13;8501;Lieboch;Lieboch;60629;1;Residential +25026865;FTTxCustomerLocation;Strauchweg 24;0.289;8501;Lieboch;Lieboch;60629;1;Residential +25026866;FTTxCustomerLocation;Strauchweg 26;.131/2;8501;Lieboch;Lieboch;60629;9;Multiple dwellings +25026867;FTTxCustomerLocation;Strauchweg 28;.131/1;8501;Lieboch;Lieboch;60629;1;Residential +25026868;FTTxCustomerLocation;Teichstraße 3;0.291;8501;Lieboch;Lieboch;60629;1;Residential +25026869;FTTxCustomerLocation;Teichstraße 4;0.484;8501;Lieboch;Lieboch;60629;1;Residential +25026870;FTTxCustomerLocation;Teichstraße 6;0.485;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026871;FTTxCustomerLocation;Teichstraße 7;0.338;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026872;FTTxCustomerLocation;Teichstraße 8;0.482;8501;Lieboch;Lieboch;60629;1;Residential +25026873;FTTxCustomerLocation;Teichstraße 10;.857/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026874;FTTxCustomerLocation;Teichstraße 12;0.858;8501;Lieboch;Lieboch;60629;1;Other +25026875;FTTxCustomerLocation;Teichstraße 15;1813/108;8501;Lieboch;Lieboch;60629;1;Residential +25026876;FTTxCustomerLocation;Teichstraße 17;0.838;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026877;FTTxCustomerLocation;Teichstraße 19;0.837;8501;Lieboch;Lieboch;60629;1;Residential +25026878;FTTxCustomerLocation;Teichstraße 21;0.592;8501;Lieboch;Lieboch;60629;1;Residential +25026879;FTTxCustomerLocation;Teichstraße 23;0.836;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026880;FTTxCustomerLocation;Teichstraße 25;0.835;8501;Lieboch;Lieboch;60629;1;Residential +25026881;FTTxCustomerLocation;Teichstraße 27;0.405;8501;Lieboch;Lieboch;60629;1;Residential +25026882;FTTxCustomerLocation;Teichstraße 29;0.404;8501;Lieboch;Lieboch;60629;1;Residential +25026883;FTTxCustomerLocation;Teichstraße 31;0.834;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026884;FTTxCustomerLocation;Waldgasse 1;0.808;8501;Lieboch;Lieboch;60629;1;Residential +25026885;FTTxCustomerLocation;Waldgasse 3;0.809;8501;Lieboch;Lieboch;60629;1;Residential +25026886;FTTxCustomerLocation;Waldgasse 4;1811/44;8501;Lieboch;Lieboch;60629;1;Residential +25026887;FTTxCustomerLocation;Waldgasse 5;1811/46;8501;Lieboch;Lieboch;60629;1;Residential +25026888;FTTxCustomerLocation;Waldgasse 7;1811/25;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026889;FTTxCustomerLocation;Waldgasse 8;0.806;8501;Lieboch;Lieboch;60629;1;Residential +25026890;FTTxCustomerLocation;Waldgasse 10;0.805;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026891;FTTxCustomerLocation;Waldgasse 11;1811/32;8501;Lieboch;Lieboch;60629;1;Residential +25026892;FTTxCustomerLocation;Waldgasse 12;0.804;8501;Lieboch;Lieboch;60629;1;Residential +25026893;FTTxCustomerLocation;Waldgasse 13;1811/26;8501;Lieboch;Lieboch;60629;1;Residential +25026894;FTTxCustomerLocation;Waldgasse 15;1811/30;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026895;FTTxCustomerLocation;Waldgasse 16;1811/38;8501;Lieboch;Lieboch;60629;1;Residential +25026896;FTTxCustomerLocation;Waldgasse 19;0.81;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026897;FTTxCustomerLocation;Waldgasse 21;0.811;8501;Lieboch;Lieboch;60629;1;Residential +25026898;FTTxCustomerLocation;Waldgasse 23;0.812;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026899;FTTxCustomerLocation;Waldgasse 25;1811/27;8501;Lieboch;Lieboch;60629;1;Residential +25026900;FTTxCustomerLocation;Waldgasse 27;1811/35;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026901;FTTxCustomerLocation;Waldgasse 29;1811/40;8501;Lieboch;Lieboch;60629;1;Residential +25026902;FTTxCustomerLocation;Waldgasse 31;1811/41;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026903;FTTxCustomerLocation;Waldgasse 33;1811/42;8501;Lieboch;Lieboch;60629;1;Residential +25026904;FTTxCustomerLocation;Weingartenstraße 67;1813/112;8501;Lieboch;Lieboch;60629;1;Residential +25026905;FTTxCustomerLocation;Weingartenstraße 69;1813/111;8501;Lieboch;Lieboch;60629;1;Residential +25026906;FTTxCustomerLocation;Weingartenstraße 71;.309/1;8501;Lieboch;Lieboch;60629;1;Residential +25026907;FTTxCustomerLocation;Weingartenstraße 75;0.308;8501;Lieboch;Lieboch;60629;1;Other +25026908;FTTxCustomerLocation;Weingartenstraße 77;0.403;8501;Lieboch;Lieboch;60629;1;Residential +25026909;FTTxCustomerLocation;Weingartenstraße 79;0.589;8501;Lieboch;Lieboch;60629;1;Other +25026910;FTTxCustomerLocation;Weingartenstraße 85;0.823;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026911;FTTxCustomerLocation;Weingartenstraße 87;0.282;8501;Lieboch;Lieboch;60629;1;Residential +25026912;FTTxCustomerLocation;Weingartenstraße 89;0.588;8501;Lieboch;Lieboch;60629;1;Residential +25026913;FTTxCustomerLocation;Weingartenstraße 91;0.822;8501;Lieboch;Lieboch;60629;1;Residential +25026914;FTTxCustomerLocation;Weingartenstraße 97;.819/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026915;FTTxCustomerLocation;Ahorngasse 1;1816/90;8501;Lieboch;Lieboch;60629;1;Other +25026916;FTTxCustomerLocation;Ahorngasse 2;1816/86;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026917;FTTxCustomerLocation;Ahorngasse 3;0.849;8501;Lieboch;Lieboch;60629;1;Residential +25026918;FTTxCustomerLocation;Ahorngasse 4;1816/93;8501;Lieboch;Lieboch;60629;1;Residential +25026919;FTTxCustomerLocation;Ahorngasse 5;0.848;8501;Lieboch;Lieboch;60629;1;Residential +25026920;FTTxCustomerLocation;Ahorngasse 8;1816/88;8501;Lieboch;Lieboch;60629;1;Residential +25026921;FTTxCustomerLocation;Ahorngasse 12;1816/92;8501;Lieboch;Lieboch;60629;1;Residential +25026922;FTTxCustomerLocation;Ahorngasse 14;1816/84;8501;Lieboch;Lieboch;60629;1;Residential +25026923;FTTxCustomerLocation;H. Thalhammer-Straße 1;1661;8501;Lieboch;Lieboch;60629;1;Company +25026924;FTTxCustomerLocation;H. Thalhammer-Straße 2;1658/2;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25026925;FTTxCustomerLocation;H. Thalhammer-Straße 3;1683/8;8501;Lieboch;Lieboch;60629;1;Company +25026926;FTTxCustomerLocation;H. Thalhammer-Straße 5;1685/1;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026927;FTTxCustomerLocation;H. Thalhammer-Straße 7;1685/2;8501;Lieboch;Lieboch;60629;1;Residential +25026928;FTTxCustomerLocation;H. Thalhammer-Straße 7;1685/2;8501;Lieboch;Lieboch;60629;1;Other +25026929;FTTxCustomerLocation;H. Thalhammer-Straße 9;1688/2;8501;Lieboch;Lieboch;60629;1;Company +25026930;FTTxCustomerLocation;H. Thalhammer-Straße 11;1690/3;8501;Lieboch;Lieboch;60629;2;Company +25026931;FTTxCustomerLocation;H. Thalhammer-Straße 13;1692;8501;Lieboch;Lieboch;60629;1;Company +25026932;FTTxCustomerLocation;H. Thalhammer-Straße 15;1693/3;8501;Lieboch;Lieboch;60629;1;Company +25026933;FTTxCustomerLocation;H. Thalhammer-Straße 16;0.866;8501;Lieboch;Lieboch;60629;1;Residential +25026934;FTTxCustomerLocation;H. Thalhammer-Straße 17;1693/2;8501;Lieboch;Lieboch;60629;1;Company +25026935;FTTxCustomerLocation;H. Thalhammer-Straße 18;1652/5;8501;Lieboch;Lieboch;60629;4;Company +25026936;FTTxCustomerLocation;H. Thalhammer-Straße 22;1648/3;8501;Lieboch;Lieboch;60629;1;Company +25026937;FTTxCustomerLocation;H. Thalhammer-Straße 24;1645/14;8501;Lieboch;Lieboch;60629;1;Company +25026938;FTTxCustomerLocation;H. Thalhammer-Straße 28;1021/5;8501;Lieboch;Lieboch;60629;2;Company +25026939;FTTxCustomerLocation;H. Thalhammer-Straße 28;1021/5;8501;Lieboch;Lieboch;60629;1;Company +25026940;FTTxCustomerLocation;H. Thalhammer-Straße 30;1020/2;8501;Lieboch;Lieboch;60629;1;Company +25026941;FTTxCustomerLocation;H. Thalhammer-Straße 32;1020/4;8501;Lieboch;Lieboch;60629;1;Company +25026942;FTTxCustomerLocation;H. Thalhammer-Straße 34;1020/1;8501;Lieboch;Lieboch;60629;1;Company +25026943;FTTxCustomerLocation;H. Thalhammer-Straße 40;1019/1;8501;Lieboch;Lieboch;60629;1;Company +25026944;FTTxCustomerLocation;Erzherzog Johann-Straße 5;1816/101;8501;Lieboch;Lieboch;60629;1;Residential +25026945;FTTxCustomerLocation;Erzherzog Johann-Straße 7;1816/99;8501;Lieboch;Lieboch;60629;1;Residential +25026947;FTTxCustomerLocation;Roseggergasse 2a;0.534;8501;Lieboch;Lieboch;60629;1;Residential +25026948;FTTxCustomerLocation;Radlstraße 18;1811/49;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25026949;FTTxCustomerLocation;Klöpfergasse 12;1813/63;8501;Lieboch;Lieboch;60629;1;Residential +25026950;FTTxCustomerLocation;Sackgasse 1;1812/54;8501;Lieboch;Lieboch;60629;1;Residential +25026951;FTTxCustomerLocation;Elisabethstraße 14a;.797/2;8501;Lieboch;Lieboch;60629;1;Residential +25026952;FTTxCustomerLocation;Bienengasse 21;1816/96;8501;Lieboch;Lieboch;60629;1;Residential +25026953;FTTxCustomerLocation;Bachweg 9a;.582/2;8501;Lieboch;Lieboch;60629;1;Residential +25026954;FTTxCustomerLocation;Waldgasse 3b;1811/50;8501;Lieboch;Lieboch;60629;1;Residential +25026955;FTTxCustomerLocation;Weingartenstraße 73;.309/2;8501;Lieboch;Lieboch;60629;1;Residential +25026956;FTTxCustomerLocation;Bachweg 2;1638/2;8501;Lieboch;Lieboch;60629;1;Residential +25026957;FTTxCustomerLocation;Sackgasse 2;1812/53;8501;Lieboch;Lieboch;60629;1;Residential +25026958;FTTxCustomerLocation;Bachweg 11;1794/10;8501;Lieboch;Lieboch;60629;1;Residential +25026959;FTTxCustomerLocation;Elisabethstraße 16;.797/2;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026960;FTTxCustomerLocation;Weingartenstraße 93;.247/3;8501;Lieboch;Lieboch;60629;1;Residential +25026961;FTTxCustomerLocation;Elisabethstraße 10;1799/13;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25026962;FTTxCustomerLocation;Elisabethstraße 10;1799/13;8501;Lieboch;Lieboch;60629;1;Other +25026963;FTTxCustomerLocation;Premstättner Straße 3;1626/5;8501;Lieboch;Lieboch;60629;1;Company +25026964;FTTxCustomerLocation;Waldgasse 3a;1811/51;8501;Lieboch;Lieboch;60629;1;Residential +25026965;FTTxCustomerLocation;Amselgasse 3;1635/13;8501;Lieboch;Lieboch;60629;1;Residential +25026966;FTTxCustomerLocation;Erzherzog Johann-Straße 3;1816/101;8501;Lieboch;Lieboch;60629;1;Residential +25026967;FTTxCustomerLocation;Elisabethstraße 2;1799/20;8501;Lieboch;Lieboch;60629;1;Residential +25026968;FTTxCustomerLocation;Elisabethstraße 18;1795/3;8501;Lieboch;Lieboch;60629;1;Residential +25026969;FTTxCustomerLocation;Föhrengasse 12;0.82;8501;Lieboch;Lieboch;60629;1;Residential +25026970;FTTxCustomerLocation;Teichstraße 9;1813/12;8501;Lieboch;Lieboch;60629;1;Residential +25026971;FTTxCustomerLocation;Radlstraße 50;.337/1;8501;Lieboch;Lieboch;60629;1;Residential +25026972;FTTxCustomerLocation;Bienengasse 51;1816/105;8501;Lieboch;Lieboch;60629;1;Residential +25026973;FTTxCustomerLocation;H. Thalhammer-Straße 19;1693/1;8501;Lieboch;Lieboch;60629;1;Company +25026974;FTTxCustomerLocation;H. Thalhammer-Straße 4 Büro u. Lagerhalle;1658/1;8501;Lieboch;Lieboch;60629;1;Company +25026975;FTTxCustomerLocation;Kernstockgasse 24;1799/25;8501;Lieboch;Lieboch;60629;1;Residential +25026976;FTTxCustomerLocation;Kernstockgasse 8;1789/6;8501;Lieboch;Lieboch;60629;1;Residential +25026977;FTTxCustomerLocation;Kernstockgasse 20;1799/27;8501;Lieboch;Lieboch;60629;1;Residential +25026978;FTTxCustomerLocation;Bahnhofstraße 77;1787/10;8501;Lieboch;Lieboch;60629;1;Company +25026979;FTTxCustomerLocation;H. Thalhammer-Straße 7a;1685/3;8501;Lieboch;Lieboch;60629;1;Residential +25026980;FTTxCustomerLocation;Bahnhofstraße 75a;1787/13;8501;Lieboch;Lieboch;60629;1;Residential +25026981;FTTxCustomerLocation;Elisabethstraße 16a;1799/16;8501;Lieboch;Lieboch;60629;1;Residential +25026982;FTTxCustomerLocation;Waldgasse 18;1811/53;8501;Lieboch;Lieboch;60629;1;Residential +25026983;FTTxCustomerLocation;Bachweg 7;1794/14;8501;Lieboch;Lieboch;60629;1;Residential +25026984;FTTxCustomerLocation;Bachweg 7a;1794/14;8501;Lieboch;Lieboch;60629;1;Residential +25026985;FTTxCustomerLocation;Bachweg 7b;1794/13;8501;Lieboch;Lieboch;60629;1;Residential +25026986;FTTxCustomerLocation;Bachweg 7c;1794/7;8501;Lieboch;Lieboch;60629;1;Residential +25026987;FTTxCustomerLocation;Bachweg 7d;1794/7;8501;Lieboch;Lieboch;60629;1;Residential +25026988;FTTxCustomerLocation;Lutzstraße 3;1771/12;8501;Lieboch;Lieboch;60629;1;Company +25026989;FTTxCustomerLocation;Bahnhofstraße 75b;1787/12;8501;Lieboch;Lieboch;60629;1;Residential +25026990;FTTxCustomerLocation;Radlstraße 4 Lebensmittelmarkt;1635/31;8501;Lieboch;Lieboch;60629;1;Company +25026991;FTTxCustomerLocation;Roseggergasse 29;1813/58;8501;Lieboch;Lieboch;60629;1;Residential +25026992;FTTxCustomerLocation;Kernstockgasse 15;1793/8;8501;Lieboch;Lieboch;60629;1;Residential +25026993;FTTxCustomerLocation;Dr.-Benno-Artner-Straße 1;1639/37;8501;Lieboch;Lieboch;60629;1;Residential +25026994;FTTxCustomerLocation;Dr.-Benno-Artner-Straße 3;1639/37;8501;Lieboch;Lieboch;60629;1;Residential +25026995;FTTxCustomerLocation;Dr.-Benno-Artner-Straße 5;1639/37;8501;Lieboch;Lieboch;60629;1;Residential +25026996;FTTxCustomerLocation;Dr.-Benno-Artner-Straße 6;1639/41;8501;Lieboch;Lieboch;60629;1;Residential +25026997;FTTxCustomerLocation;Dr.-Benno-Artner-Straße 8;1639/41;8501;Lieboch;Lieboch;60629;1;Residential +25026998;FTTxCustomerLocation;Dr.-Benno-Artner-Straße 7;1639/38;8501;Lieboch;Lieboch;60629;1;Residential +25026999;FTTxCustomerLocation;Dr.-Benno-Artner-Straße 9;1639/38;8501;Lieboch;Lieboch;60629;1;Residential +25027000;FTTxCustomerLocation;Dr.-Benno-Artner-Straße 11;1639/39;8501;Lieboch;Lieboch;60629;1;Residential +25027001;FTTxCustomerLocation;Strauchweg 6;1639/34;8501;Lieboch;Lieboch;60629;1;Residential +25027002;FTTxCustomerLocation;Strauchweg 6a;1639/34;8501;Lieboch;Lieboch;60629;1;Residential +25027003;FTTxCustomerLocation;Strauchweg 6b;1639/34;8501;Lieboch;Lieboch;60629;1;Residential +25027004;FTTxCustomerLocation;Strauchweg 6c;1639/34;8501;Lieboch;Lieboch;60629;1;Residential +25027005;FTTxCustomerLocation;Strauchweg 8;1639/35;8501;Lieboch;Lieboch;60629;1;Residential +25027006;FTTxCustomerLocation;Strauchweg 8a;1639/35;8501;Lieboch;Lieboch;60629;1;Residential +25027007;FTTxCustomerLocation;Strauchweg 10;1639/36;8501;Lieboch;Lieboch;60629;1;Residential +25027008;FTTxCustomerLocation;Strauchweg 10a;1639/36;8501;Lieboch;Lieboch;60629;1;Residential +25027009;FTTxCustomerLocation;Forstgasse 2a;0.402;8501;Lieboch;Lieboch;60629;1;Residential +25027010;FTTxCustomerLocation;Amselgasse 5;1635/28;8501;Lieboch;Lieboch;60629;1;Residential +25027011;FTTxCustomerLocation;Teichstraße 10a;.857/2;8501;Lieboch;Lieboch;60629;1;Residential +25027012;FTTxCustomerLocation;Teichstraße 36;1813/122;8501;Lieboch;Lieboch;60629;1;Residential +25027013;FTTxCustomerLocation;Erzherzog Johann-Straße 12;1816/121;8501;Lieboch;Lieboch;60629;1;Residential +25027014;FTTxCustomerLocation;Bienengasse 24d;1816/130;8501;Lieboch;Lieboch;60629;1;Residential +25027015;FTTxCustomerLocation;Industriestraße West 10;1673;8501;Lieboch;Lieboch;60629;1;Company +25027016;FTTxCustomerLocation;Lutzstraße 2;1771/11;8501;Lieboch;Lieboch;60629;3;Company +25027017;FTTxCustomerLocation;Doblerstraße 2;1780/13;8501;Lieboch;Lieboch;60629;1;Company +25027018;FTTxCustomerLocation;Roseggergasse 41;1816/95;8501;Lieboch;Lieboch;60629;1;Residential +25027019;FTTxCustomerLocation;Teichstraße 32;1813/125;8501;Lieboch;Lieboch;60629;1;Residential +25027020;FTTxCustomerLocation;Teichstraße 26;1813/128;8501;Lieboch;Lieboch;60629;1;Residential +25027021;FTTxCustomerLocation;Bienengasse 22a;1816/132;8501;Lieboch;Lieboch;60629;1;Residential +25027022;FTTxCustomerLocation;Teichstraße 34;1813/124;8501;Lieboch;Lieboch;60629;1;Residential +25027024;FTTxCustomerLocation;Radlstraße 20;1811/54;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25027025;FTTxCustomerLocation;Roseggergasse 51;1816/133;8501;Lieboch;Lieboch;60629;1;Residential +25027026;FTTxCustomerLocation;Teichstraße 30;1813/126;8501;Lieboch;Lieboch;60629;1;Residential +25027027;FTTxCustomerLocation;Bienengasse 17;.843/4;8501;Lieboch;Lieboch;60629;1;Residential +25027028;FTTxCustomerLocation;Klöpfergasse 6;1813/84;8501;Lieboch;Lieboch;60629;1;Residential +25027029;FTTxCustomerLocation;Radlstraße 36a;1814/35;8501;Lieboch;Lieboch;60629;1;Residential +25027030;FTTxCustomerLocation;Forstgasse 31;1812/64;8501;Lieboch;Lieboch;60629;1;Residential +25027031;FTTxCustomerLocation;Bahnhofstraße 25;1807/4;8501;Lieboch;Lieboch;60629;1;Residential +25027032;FTTxCustomerLocation;Roseggergasse 8a;.475/2;8501;Lieboch;Lieboch;60629;1;Residential +25027033;FTTxCustomerLocation;Industriestraße Süd 1;1748/2;8501;Lieboch;Lieboch;60629;2;Company +25027034;FTTxCustomerLocation;Strauchweg 18a;1803;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25027035;FTTxCustomerLocation;Strauchweg 18b;1803;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25027036;FTTxCustomerLocation;Strauchweg 18c;1803;8501;Lieboch;Lieboch;60629;4;Multiple dwellings +25027037;FTTxCustomerLocation;Dr.-Benno-Artner-Straße 2;1639/33;8501;Lieboch;Lieboch;60629;1;Residential +25027038;FTTxCustomerLocation;Dr.-Benno-Artner-Straße 4;1639/33;8501;Lieboch;Lieboch;60629;1;Residential +25027039;FTTxCustomerLocation;Strauchweg 2;1639/33;8501;Lieboch;Lieboch;60629;1;Residential +25027040;FTTxCustomerLocation;Strauchweg 12;1639/28;8501;Lieboch;Lieboch;60629;1;Residential +25027041;FTTxCustomerLocation;Dr.-Benno-Artner-Straße 10;1639/40;8501;Lieboch;Lieboch;60629;1;Residential +25027042;FTTxCustomerLocation;Industriestraße Süd 2;1741;8501;Lieboch;Lieboch;60629;3;Company +25027043;FTTxCustomerLocation;Packer Straße 1;1626/1;8501;Lieboch;Lieboch;60629;1;Company +25027044;FTTxCustomerLocation;Industriestraße West 3;1758/7;8501;Lieboch;Lieboch;60629;2;Company +25027045;FTTxCustomerLocation;Kernstockgasse 25;1793/19;8501;Lieboch;Lieboch;60629;6;Multiple dwellings +25027046;FTTxCustomerLocation;Bienengasse 39;1816/138;8501;Lieboch;Lieboch;60629;1;Residential +25027047;FTTxCustomerLocation;Bienengasse 33;1816/139;8501;Lieboch;Lieboch;60629;1;Residential +25027048;FTTxCustomerLocation;Roseggergasse 7a;2264;8501;Lieboch;Lieboch;60629;1;Residential +25027049;FTTxCustomerLocation;Roseggergasse 14a;0.856;8501;Lieboch;Lieboch;60629;1;Residential +25027050;FTTxCustomerLocation;Kernstockgasse 27;1793/12;8501;Lieboch;Lieboch;60629;3;Multiple dwellings +25027051;FTTxCustomerLocation;Industriestraße Süd 3;1728/7;8501;Lieboch;Lieboch;60629;2;Company +25027052;FTTxCustomerLocation;Hofgasse 9;.192/2;8501;Lieboch;Lieboch;60629;1;Residential +25027053;FTTxCustomerLocation;Ahorngasse 10;1816/91;8501;Lieboch;Lieboch;60629;1;Residential +25027054;FTTxCustomerLocation;Forstgasse 15;0.303;8501;Lieboch;Lieboch;60629;1;Residential +25027055;FTTxCustomerLocation;Gartengasse 18;.264/4;8501;Lieboch;Lieboch;60629;1;Residential +25027056;FTTxCustomerLocation;Bienengasse 19;.843/3;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25027057;FTTxCustomerLocation;Waldgasse 35;1811/28;8501;Lieboch;Lieboch;60629;1;Residential +25027058;FTTxCustomerLocation;Werner Gröbl-Straße 2;.839/1;8501;Lieboch;Lieboch;60629;2;Company +25027059;FTTxCustomerLocation;Radlstraße 81;1732;8501;Lieboch;Lieboch;60629;8;Public +25027060;FTTxCustomerLocation;Johann-Humer-Straße 1;1767/3;8501;Lieboch;Lieboch;60629;3;Company +25027061;FTTxCustomerLocation;Bahnhofstraße 67;2266;8501;Lieboch;Lieboch;60629;2;Multiple dwellings +25027062;FTTxCustomerLocation;Bienengasse 16a;1816/22;8501;Lieboch;Lieboch;60629;1;Residential +25027063;FTTxCustomerLocation;Bachweg 7e;2265;8501;Lieboch;Lieboch;60629;1;Residential +25028536;FTTxCustomerLocation;;;8501;Lieboch;Lieboch;60629;1;Greenfield +25151861;FTTxCustomerLocation;Strauchweg 7;1639/7;8501;Graz-Umgebung;Lieboch;60629;1;Greenfield +25154380;FTTxCustomerLocation;GST 2134/3 7;;8501;Graz-Umgebung;Lieboch;60629;11;Greenfield +25154840;FTTxCustomerLocation;Bienengasse 16;;8501;Graz-Umgebung;Lieboch;60629;1; +25154841;FTTxCustomerLocation;Panoramaweg 19a;;8501;Graz-Umgebung;Lieboch;60629;1; +25154849;FTTxCustomerLocation;Forstgasse 26a;;8501;Graz-Umgebung;Lieboch;60629;1; +25154850;FTTxCustomerLocation;Josef Mihalits-Straße 18;;8501;Graz-Umgebung;Lieboch;60629;1; +25154851;FTTxCustomerLocation;Siedlungsstraße 4a;;8501;Graz-Umgebung;Lieboch;60629;1; +25154852;FTTxCustomerLocation;Erzherzog Johann-Straße 20;;8501;Graz-Umgebung;Lieboch;60629;1; +25154853;FTTxCustomerLocation;Erzherzog Johann-Straße 20a;;8501;Graz-Umgebung;Lieboch;60629;1; +25154854;FTTxCustomerLocation;Erzherzog Johann-Straße 18;;8501;Graz-Umgebung;Lieboch;60629;1; +25154855;FTTxCustomerLocation;Erzherzog Johann-Straße 18a;;8501;Graz-Umgebung;Lieboch;60629;1; +25154856;FTTxCustomerLocation;Schmiedgasse 19;;8501;Graz-Umgebung;Lieboch;60629;1; +25154857;FTTxCustomerLocation;Gartengasse 20;;8501;Graz-Umgebung;Lieboch;60629;1; +25155389;FTTxCustomerLocation;Strauchweg 7;;8501;Graz-Umgebung;Lieboch;60629;1; +25155410;FTTxCustomerLocation;Kainachstraße 55;;8501;Graz-Umgebung;Lieboch;60629;1; +25157136;FTTxCustomerLocation;GST 1534/18;;8501;Graz-Umgebung;Lieboch;60629;1; +25157204;FTTxCustomerLocation;Teichstraße 11;;8501;Lieboch;Lieboch;60629;1; +25022448;FTTxCustomerLocation;Liebochstraße 46;448/3;8143;Dobl-Zwaring;Dobl-Zwaring;60660;1;Residential